diff options
author | Michael Elkins <melkins@tislabs.com> | 2011-01-25 01:24:19 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2011-01-25 01:24:19 +0000 |
commit | a3eacc05ee7e8d98c937f0bae5e45f1c4e2083c3 (patch) | |
tree | 73b73b6d58f214fd82c6315318598d20e3cbe64b /rpkid/setup.py | |
parent | fb43a2ca65901ca9b1bbcaf630f91582ec7ff2d3 (diff) |
move portal-gui/scripts to rpkid/rpkid/gui/scripts
svn path=/portal-gui/Makefile.in; revision=3657
Diffstat (limited to 'rpkid/setup.py')
-rw-r--r-- | rpkid/setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rpkid/setup.py b/rpkid/setup.py index 5bada734..4f6294fb 100644 --- a/rpkid/setup.py +++ b/rpkid/setup.py @@ -24,9 +24,11 @@ ac_cflags = os.getenv("AC_CFLAGS", "").split() ac_ldflags = os.getenv("AC_LDFLAGS", "").split() ac_libs = os.getenv("AC_LIBS", "").split() ac_scripts = os.getenv("AC_SCRIPTS", "").split() +ac_aux_scripts = os.getenv("AC_AUX_SCRIPTS", "").split() ac_sbindir = os.getenv("AC_SBINDIR", "").strip() ac_abs_builddir = os.getenv("AC_ABS_BUILDDIR", "").strip() +ac_libexecdir = os.getenv("AC_LIBEXECDIR", "").strip() # Non-standard extension build specification: we need to force # whatever build options our top-level ./configure selected, and we @@ -50,4 +52,4 @@ setup(name = "rpkitoolkit", url = "http://www.rpki.net/", packages = ["rpki", "rpki.POW", "rpki.gui", "rpki.gui.app" ], ext_modules = [pow], - data_files = [(ac_sbindir, scripts)]) + data_files = [(ac_sbindir, scripts), (ac_libexecdir, ac_aux_scripts)]) |