1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Autoconf tweaking to fix permissions
Files should be owner-writeable
Author: Julian Gilbey <jdg@debian.org>
Forwarded: no
Last-Update: 2010-01-13
--- a/configure.in
+++ b/configure.in
@@ -15,7 +15,7 @@
AC_OUTPUT(GNUmakefile:GNUmakefile.in mftrace:mftrace.py mftrace.spec:mftrace.spec.in)
-chmod a-w GNUmakefile mftrace
+chmod go-w GNUmakefile mftrace
chmod a+x mftrace
|