summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-05-12 23:26:46 +0200
committerLudovic Courtès <ludo@gnu.org>2013-05-12 23:26:46 +0200
commite8b3afeb9234bca4a455272a6a831d7994d29b96 (patch)
treebc08b6b2d8d8c518927a220079c2b62253dd58fa /configure.ac
parentf5ebf5c6ac2b9c48608211349acf1b4119a6f8c1 (diff)
downloadgnu-guix-e8b3afeb9234bca4a455272a6a831d7994d29b96.tar
gnu-guix-e8b3afeb9234bca4a455272a6a831d7994d29b96.tar.gz
build: Use separate `AC_CONFIG_FILES' invocations for executable files.
* configure.ac: Use separate AC_CONFIG_FILES invocations for files that need to be made executable. * config-daemon.ac: Likewise.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 3 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 61cee965b7..f871552591 100644
--- a/configure.ac
+++ b/configure.ac
@@ -120,9 +120,8 @@ AC_CONFIG_FILES([Makefile
po/Makefile.in
guix/config.scm])
-AC_CONFIG_FILES([scripts/guix
- pre-inst-env
- test-env],
- [chmod +x scripts/guix pre-inst-env test-env])
+AC_CONFIG_FILES([scripts/guix], [chmod +x scripts/guix])
+AC_CONFIG_FILES([pre-inst-env], [chmod +x pre-inst-env])
+AC_CONFIG_FILES([test-env], [chmod +x test-env])
AC_OUTPUT