diff options
author | Martin Baulig <martin@src.gnome.org> | 1998-12-07 20:05:21 +0000 |
---|---|---|
committer | Martin Baulig <martin@src.gnome.org> | 1998-12-07 20:05:21 +0000 |
commit | f1152606e30001730a5ce51eed7837162166358d (patch) | |
tree | ffddba3917b27e884a0b1756584a677c9fa38f13 /macros | |
parent | 209eddc8fa3974d4668c86a5fdd8a6eb68cf5d96 (diff) | |
download | shared-mime-info-f1152606e30001730a5ce51eed7837162166358d.tar.gz |
Make sure aclocal.m4 exists before making it writable.
svn path=/trunk/; revision=509
Diffstat (limited to 'macros')
-rw-r--r-- | macros/autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/autogen.sh b/macros/autogen.sh index 8e15775c..4b6a862f 100644 --- a/macros/autogen.sh +++ b/macros/autogen.sh @@ -92,7 +92,7 @@ do echo "Running gettextize... Ignore non-fatal messages." echo "no" | gettextize --force --copy echo "Making $dr/aclocal.m4 writable ..." - chmod u+w $dr/aclocal.m4 + test -e $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 fi fi if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then |