diff options
author | Rob Austein <sra@hactrn.net> | 2014-04-14 15:40:52 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-04-14 15:40:52 +0000 |
commit | 1917be8bbd3fdcc84bd212f7b799bed8c80ca9e1 (patch) | |
tree | cf43547e51629e77497ef7509ddbb84fa4cd65e4 /rp/utils/Makefile.in | |
parent | 909009f54b1cfa93400aaade55ef583fe820dd34 (diff) |
Move all Python script installation to setup.py, so that it gets the
name of the Python executable right (FreeBSD $PATH under cron problem,
again, yet another variant). See #686.
svn path=/trunk/; revision=5792
Diffstat (limited to 'rp/utils/Makefile.in')
-rw-r--r-- | rp/utils/Makefile.in | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/rp/utils/Makefile.in b/rp/utils/Makefile.in index b4a178ff..1ff248e8 100644 --- a/rp/utils/Makefile.in +++ b/rp/utils/Makefile.in @@ -23,8 +23,6 @@ abs_top_builddir = @abs_top_builddir@ BINS = find_roa hashdir print_rpki_manifest print_roa scan_roas uri -SCRIPTS = scan_routercerts find-roa-expiration - all:: ${BINS} clean:: @@ -32,10 +30,10 @@ clean:: install:: all if test -d ${DESTDIR}${bindir} ; then :; else ${INSTALL} -d ${DESTDIR}${bindir}; fi - ${INSTALL} ${BINS} ${SCRIPTS} ${DESTDIR}${bindir} + ${INSTALL} ${BINS} ${DESTDIR}${bindir} deinstall uninstall:: - for i in ${BINS} ${SCRIPTS}; do rm -f ${DESTDIR}${bindir}/$$i; done + for i in ${BINS}; do rm -f ${DESTDIR}${bindir}/$$i; done distclean:: clean rm -f Makefile @@ -64,7 +62,7 @@ RSYNC_AUTH_DIR = ${abs_top_builddir}/rp/rcynic/rcynic-data/authenticated HASHDIR_OUTPUT = hashed-pem-dir TARGET_PREFIXES = 10.3.0.44 10.2.0.6 10.0.0.0/24 -test:: ${BINS} ${SCRIPTS} +test:: ${BINS} if test -d ${RSYNC_AUTH_DIR}; \ then \ rm -rf ${HASHDIR_OUTPUT} ; \ |