summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin@src.gnome.org>1998-12-06 13:00:17 +0000
committerMartin Baulig <martin@src.gnome.org>1998-12-06 13:00:17 +0000
commit209eddc8fa3974d4668c86a5fdd8a6eb68cf5d96 (patch)
tree0ffcf79c36d1580a75dc600c5907bad8f3aa7af8
parentdce40af18c57ab1257c821a774acae92cc35c3fd (diff)
downloadgnome-common-209eddc8fa3974d4668c86a5fdd8a6eb68cf5d96.tar.gz
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 15e6527..8e15775 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