diff options
author | Martin Baulig <martin@src.gnome.org> | 1998-12-06 21:00:17 +0800 |
---|---|---|
committer | Martin Baulig <martin@src.gnome.org> | 1998-12-06 21:00:17 +0800 |
commit | cc3aece5db0f3550461e8a042fa47d935a0ac430 (patch) | |
tree | edc13ad5b7249b443e1ea61a0b7a37a24faa09a8 /macros/autogen.sh | |
parent | 6649899543b88775102f055ccf1f00f4e811ef2f (diff) | |
download | gsoc2013-evolution-cc3aece5db0f3550461e8a042fa47d935a0ac430.tar gsoc2013-evolution-cc3aece5db0f3550461e8a042fa47d935a0ac430.tar.gz gsoc2013-evolution-cc3aece5db0f3550461e8a042fa47d935a0ac430.tar.bz2 gsoc2013-evolution-cc3aece5db0f3550461e8a042fa47d935a0ac430.tar.lz gsoc2013-evolution-cc3aece5db0f3550461e8a042fa47d935a0ac430.tar.xz gsoc2013-evolution-cc3aece5db0f3550461e8a042fa47d935a0ac430.tar.zst gsoc2013-evolution-cc3aece5db0f3550461e8a042fa47d935a0ac430.zip |
Invoke gettextize with the --copy parameter to prevent it from making
aclocal.m4 a symlink to a place where normal people don't have write
access. After that do a chmod on that file so we really can write it.
svn path=/trunk/; revision=508
Diffstat (limited to 'macros/autogen.sh')
-rw-r--r-- | macros/autogen.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/macros/autogen.sh b/macros/autogen.sh index 15e6527403..8e15775ca0 100644 --- a/macros/autogen.sh +++ b/macros/autogen.sh @@ -90,7 +90,9 @@ do : do nothing -- we still have an old unmodified configure.in else echo "Running gettextize... Ignore non-fatal messages." - echo "no" | gettextize --force + echo "no" | gettextize --force --copy + echo "Making $dr/aclocal.m4 writable ..." + chmod u+w $dr/aclocal.m4 fi fi if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then |