diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-07-16 21:58:34 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-08-05 22:48:50 +0100 |
commit | fc2b7f194c5aea62535ec26bbaf55ba1667f4fd3 (patch) | |
tree | 46bc88c34eb30f8efc89ef7f248b8a978d51b6c1 | |
parent | 930433b194c32868d39e7cfc459bb18f4074852f (diff) | |
download | libguestfs-fc2b7f194c5aea62535ec26bbaf55ba1667f4fd3.tar.gz libguestfs-fc2b7f194c5aea62535ec26bbaf55ba1667f4fd3.tar.xz libguestfs-fc2b7f194c5aea62535ec26bbaf55ba1667f4fd3.zip |
configure: Make generated files read-only.
Some of the generated files anyway.
(cherry picked from commit 3a442e66170518f725b92a1041546d81fde95492)
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 2b8a9811..0d13e423 100644 --- a/configure.ac +++ b/configure.ac @@ -1187,11 +1187,11 @@ dnl Produce output files. AC_CONFIG_HEADERS([config.h]) dnl http://www.mail-archive.com/automake@gnu.org/msg10204.html AC_CONFIG_FILES([clone/virt-sysprep], - [chmod +x clone/virt-sysprep]) + [chmod +x,-w clone/virt-sysprep]) AC_CONFIG_FILES([podwrapper.sh], - [chmod +x podwrapper.sh]) + [chmod +x,-w podwrapper.sh]) AC_CONFIG_FILES([run], - [chmod +x run]) + [chmod +x,-w run]) AC_CONFIG_FILES([Makefile align/Makefile appliance/Makefile |