summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorElliot Lee <sopwith@src.gnome.org>1998-02-11 22:22:32 +0000
committerElliot Lee <sopwith@src.gnome.org>1998-02-11 22:22:32 +0000
commite73ee0a9968f512b46c119fc75cb4b8895088045 (patch)
tree1b388fa5a21d6b63023babe41d508d72fc5a3a4a /autogen.sh
parentdb2c4096177076206846c0933be85d40963b6b72 (diff)
downloadgnome-control-center-e73ee0a9968f512b46c119fc75cb4b8895088045.tar.gz
misc fixes
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh11
1 files changed, 9 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index c3e58af23..b1bced6f6 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -73,6 +73,12 @@ if test -z "$*"; then
echo
fi
+for I in /usr /usr/local /opt /opt/gnome; do
+ if [ -f $I/lib/gnomeConf.sh ]; then
+ GNOMEINSTDIR="--with-gnome=$I"
+ fi
+done
+
for i in .
do
echo processing $srcdir/$i
@@ -84,5 +90,6 @@ do
automake --gnu; autoheader; autoconf)
done
-echo running $srcdir/configure
-$srcdir/configure "$@" && echo Now type \`make\' to compile the Gnome Libraries.
+echo running $srcdir/configure --enable-maintainer-mode $GNOMEINSTDIR "$@"
+$srcdir/configure --enable-maintainer-mode $GNOMEINSTDIR "$@" \
+&& echo Now type \`make\' to compile the Gnome Libraries.