2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-05 00:15:17 +00:00

Make sure the executables are executable in the build tree.

Of course, when installed, the installation makes them executable,
but this is needed for when running the code direct from build tree.


git-svn-id: svn://bind10.isc.org/svn/bind10/branches/parkinglot@622 e5f2f494-b856-4b98-b285-d166d9295462
This commit is contained in:
Jeremy C. Reed
2010-01-29 01:57:25 +00:00
parent f249a0caa3
commit d93b83e909
4 changed files with 4 additions and 4 deletions

View File

@@ -5,4 +5,4 @@ CLEANFILES = bind10.py
# this is done here since configure.ac AC_OUTPUT doesn't expand exec_prefix
bind10: bind10.py
$(SED) "s|@@PYTHONPATH@@|@pyexecdir@|" bind10.py >$@
# chmod a+x $@
chmod a+x $@

View File

@@ -8,4 +8,4 @@ CLEANFILES = b10-cfgmgr.py
# this is done here since configure.ac AC_OUTPUT doesn't expand exec_prefix
b10-cfgmgr: b10-cfgmgr.py
$(SED) "s|@@PYTHONPATH@@|@pyexecdir@|" b10-cfgmgr.py >$@
# chmod a+x $@
chmod a+x $@

View File

@@ -8,4 +8,4 @@ CLEANFILES= b10-cmdctl.py
# this is done here since configure.ac AC_OUTPUT doesn't expand exec_prefix
b10-cmdctl: b10-cmdctl.py
$(SED) "s|@@PYTHONPATH@@|@pyexecdir@|" b10-cmdctl.py >$@
# chmod a+x $@
chmod a+x $@

View File

@@ -8,4 +8,4 @@ CLEANFILES = msgq.py
# this is done here since configure.ac AC_OUTPUT doesn't expand exec_prefix
msgq: msgq.py
$(SED) "s|@@PYTHONPATH@@|@pyexecdir@|" msgq.py >$@
# chmod a+x $@
chmod a+x $@