Browse Source

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
Jeremy C. Reed 15 years ago
parent
commit
d93b83e909

+ 1 - 1
src/bin/bind10/Makefile.am

@@ -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 $@

+ 1 - 1
src/bin/cfgmgr/Makefile.am

@@ -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 $@

+ 1 - 1
src/bin/cmdctl/Makefile.am

@@ -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 $@

+ 1 - 1
src/bin/msgq/Makefile.am

@@ -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 $@