summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorElliot Lee <sopwith@src.gnome.org>1998-02-11 22:22:33 +0000
committerElliot Lee <sopwith@src.gnome.org>1998-02-11 22:22:33 +0000
commite647059c87ca378b50fbde1ef7040621460a2f1b (patch)
tree20f6bfb64f726460de87a2adb3a341bb6f31554a /autogen.sh
parent426158753e32808bcb5ccd0a1a92828e223ba455 (diff)
downloadgnome-desktop-e647059c87ca378b50fbde1ef7040621460a2f1b.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 c3e58af2..b1bced6f 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.