[hipl-dev] [Branch ~hipl-core/hipl/trunk] Rev 5202: Make sure that the executables created by configure have executable permission.

  • From: noreply@xxxxxxxxxxxxx
  • To: HIPL core team <hipl-dev@xxxxxxxxxxxxx>
  • Date: Mon, 29 Nov 2010 12:08:27 -0000

------------------------------------------------------------
revno: 5202
committer: Diego Biurrun <diego@xxxxxxxxxx>
branch nick: trunk
timestamp: Mon 2010-11-29 12:58:57 +0100
message:
  Make sure that the executables created by configure have executable 
permission.
  
  Apparently autotools does not figure that out on its own, you have to invoke
  the chmod manually for each file.  Notice that I tried avoiding multiple
  AC_CONFIG_FILES and chmod invocations, but autotools balked and barfed and
  was generally loathsome, so don't waste your time trying to improve this.
modified:
  configure.ac


--
lp:hipl
https://code.launchpad.net/~hipl-core/hipl/trunk

Your team HIPL core team is subscribed to branch lp:hipl.
To unsubscribe from this branch go to 
https://code.launchpad.net/~hipl-core/hipl/trunk/+edit-subscription
=== modified file 'configure.ac'
--- configure.ac        2010-11-23 19:40:59 +0000
+++ configure.ac        2010-11-29 11:58:57 +0000
@@ -250,11 +250,14 @@
 
 
 
-AC_CONFIG_FILES([ Makefile
-                  doc/Doxyfile
-                  doc/HOWTO.xml
-                  tools/hipdnskeyparse/hipdnskeyparse
-                  tools/hipdnsproxy/hipdnsproxy
-                  tools/nsupdate.pl ])
+AC_CONFIG_FILES([Makefile
+                 doc/Doxyfile
+                 doc/HOWTO.xml])
+AC_CONFIG_FILES([tools/hipdnskeyparse/hipdnskeyparse],
+                [chmod +x tools/hipdnskeyparse/hipdnskeyparse])
+AC_CONFIG_FILES([tools/hipdnsproxy/hipdnsproxy],
+                [chmod +x tools/hipdnsproxy/hipdnsproxy])
+AC_CONFIG_FILES([tools/nsupdate.pl],
+                [chmod +x tools/nsupdate.pl])
 
 AC_OUTPUT

Other related posts:

  • » [hipl-dev] [Branch ~hipl-core/hipl/trunk] Rev 5202: Make sure that the executables created by configure have executable permission. - noreply