diff options
author | Elliot Lee <sopwith@src.gnome.org> | 1998-02-11 22:22:33 +0000 |
---|---|---|
committer | Elliot Lee <sopwith@src.gnome.org> | 1998-02-11 22:22:33 +0000 |
commit | e647059c87ca378b50fbde1ef7040621460a2f1b (patch) | |
tree | 20f6bfb64f726460de87a2adb3a341bb6f31554a /autogen.sh | |
parent | 426158753e32808bcb5ccd0a1a92828e223ba455 (diff) | |
download | gnome-desktop-e647059c87ca378b50fbde1ef7040621460a2f1b.tar.gz |
misc fixes
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -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. |