diff options
author | Elliot Lee <sopwith@src.gnome.org> | 1999-12-15 19:59:05 +0000 |
---|---|---|
committer | Elliot Lee <sopwith@src.gnome.org> | 1999-12-15 19:59:05 +0000 |
commit | c37abc45b0c7c83e5b75a7abd2d35c60b0de24f1 (patch) | |
tree | a92fb3b096aca29ea827cb3511aa3e74c7e936a7 /autogen.sh | |
parent | 8c729d0d1089b479434b30b72f4041cf86dbfe7b (diff) | |
download | nautilus-c37abc45b0c7c83e5b75a7abd2d35c60b0de24f1.tar.gz |
Clean up --enable-* args slightly.
Clean up --enable-* args slightly.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index b93c73877..95a1cce54 100755 --- a/autogen.sh +++ b/autogen.sh @@ -78,7 +78,11 @@ autoconf cd $ORIGDIR -$srcdir/configure --enable-maintainer-mode "$@" +if [ "`whoami`" = "sopwith" ]; then + SOPWITH_FLAGS_HACK="--enable-fatal-warnings=no --enable-more-warnings=no" +fi + +$srcdir/configure --enable-maintainer-mode "$@" $SOPWITH_FLAGS_HACK echo echo "Now type 'make' to compile $PROJECT." |