diff options
author | Ken Foskey <waratah@openoffice.org> | 2002-10-02 12:42:16 +0000 |
---|---|---|
committer | Ken Foskey <waratah@openoffice.org> | 2002-10-02 12:42:16 +0000 |
commit | cd4c8bcdb73c5e3db92bd4333e40cfb20b34d6a0 (patch) | |
tree | c29bf628e0353a7691f640dfcf9eba3a4f881127 /dmake/autogen.sh | |
parent | 2076d0966af5ecfe6e8a1c2cc1eb25b0b607b45a (diff) |
dmake: Allow the whole configure process to work, not needs update to bootstrap to activate
Diffstat (limited to 'dmake/autogen.sh')
-rwxr-xr-x | dmake/autogen.sh | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/dmake/autogen.sh b/dmake/autogen.sh index a48319ee9410..3c2ae40eda89 100755 --- a/dmake/autogen.sh +++ b/dmake/autogen.sh @@ -35,14 +35,6 @@ DIE=0 DIE=1 } -(gettextize --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "You must have gettextize installed to compile $PROJECT." - echo "Get ftp://ftp.gnu.org/gnu/gettext/gettext-0.10.38.tar.gz" - echo "(or a newer version if it is available)" - DIE=1 -} - if test "$DIE" -eq 1; then exit 1 fi @@ -60,7 +52,7 @@ fi if test -z "$ACLOCAL_FLAGS"; then acdir=`aclocal --print-ac-dir` - m4list="glib.m4 gettext.m4" + m4list="glib.m4" for file in $m4list do @@ -76,17 +68,7 @@ if test -z "$ACLOCAL_FLAGS"; then done fi -echo "Running gettextize... Ignore non-fatal messages." -# Hmm, we specify --force here, since otherwise things dont' -# get added reliably, but we don't want to overwrite intl -# while making dist. -echo "no" | gettextize --copy --force - # -# Really bad hack -echo "Munging po/Makefile.in.in" -sed s%@PACKAGE@%@GETTEXT_PACKAGE@% < po/Makefile.in.in > po/Makefile.in.in.new -mv po/Makefile.in.in.new po/Makefile.in.in chmod 666 aclocal.m4 aclocal $ACLOCAL_FLAGS |