diff options
author | Richard W.M. Jones <[email protected]> | 2009-06-24 15:35:59 +0100 |
---|---|---|
committer | Richard W.M. Jones <[email protected]> | 2009-06-24 15:35:59 +0100 |
commit | 53f5ea28ffe26c112e51ebdef6d46c25919ced4f (patch) | |
tree | 6302b5617e7171cca4eef3c47bd88697cb37e0be /configure.ac | |
parent | 63d28e74b3a2c4e6f3e31fc1f8e1219a1a943404 (diff) | |
download | libguestfs-53f5ea28ffe26c112e51ebdef6d46c25919ced4f.tar.gz libguestfs-53f5ea28ffe26c112e51ebdef6d46c25919ced4f.tar.xz libguestfs-53f5ea28ffe26c112e51ebdef6d46c25919ced4f.zip |
Fix permissions on generated scripts in the appliance/ directory.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 42f0127a..386bec57 100644 --- a/configure.ac +++ b/configure.ac @@ -506,12 +506,20 @@ AC_CONFIG_SUBDIRS([daemon]) dnl Produce output files. AC_CONFIG_HEADERS([config.h]) +dnl http://www.mail-archive.com/[email protected]/msg10204.html +AC_CONFIG_FILES([appliance/make.sh], + [chmod +x appliance/make.sh]) +AC_CONFIG_FILES([appliance/update.sh], + [chmod +x appliance/update.sh]) +AC_CONFIG_FILES([appliance/supermin-split.sh], + [chmod +x appliance/supermin-split.sh]) +AC_CONFIG_FILES([appliance/supermin-make.sh], + [chmod +x appliance/supermin-make.sh]) +AC_CONFIG_FILES([appliance/libguestfs-supermin-helper], + [chmod +x appliance/libguestfs-supermin-helper]) AC_CONFIG_FILES([Makefile src/Makefile fish/Makefile po/Makefile.in examples/Makefile appliance/Makefile - appliance/make.sh appliance/update.sh - appliance/supermin-split.sh appliance/supermin-make.sh - appliance/libguestfs-supermin-helper images/Makefile capitests/Makefile regressions/Makefile @@ -526,9 +534,6 @@ AC_CONFIG_FILES([Makefile ocaml/META perl/Makefile.PL]) AC_OUTPUT -dnl WTF? -chmod +x appliance/*.sh appliance/libguestfs-supermin-helper - dnl Produce summary. echo echo |