diff options
author | Werner Koch <wk@gnupg.org> | 2007-06-15 16:27:31 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2007-06-15 16:27:31 +0200 |
commit | 915b7b21fdb2d84ef55542681f418690dd8832db (patch) | |
tree | 43c4b7465e0120d6b63591b0c61b3338030f65f7 /autogen.sh | |
parent | 2007-06-15 Marcus Brinkmann <marcus@g10code.de> (diff) | |
download | gnupg2-915b7b21fdb2d84ef55542681f418690dd8832db.tar.xz gnupg2-915b7b21fdb2d84ef55542681f418690dd8832db.zip |
Build fixes for W32
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh index 0470ad0d2..70b2eabb7 100755 --- a/autogen.sh +++ b/autogen.sh @@ -40,7 +40,7 @@ MSGMERGE=${GETTEXT_PREFIX}${MSGMERGE:-msgmerge}${GETTEXT_SUFFIX} DIE=no FORCE= -if test "$1" == "--force"; then +if test x"$1" = x"--force"; then FORCE=" --force" shift fi @@ -92,7 +92,8 @@ if test "$1" = "--build-w32"; then --with-libassuan-prefix=${w32root} \ --with-zlib=${w32root} \ --with-pth-prefix=${w32root} \ - --without-included-gettext + --without-included-gettext \ + --disable-regex rc=$? exit $rc fi |