aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Baulig <martin@src.gnome.org>1998-12-06 21:00:17 +0800
committerMartin Baulig <martin@src.gnome.org>1998-12-06 21:00:17 +0800
commitcc3aece5db0f3550461e8a042fa47d935a0ac430 (patch)
treeedc13ad5b7249b443e1ea61a0b7a37a24faa09a8
parent6649899543b88775102f055ccf1f00f4e811ef2f (diff)
downloadgsoc2013-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
-rw-r--r--macros/autogen.sh4
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