GNOME friendliness option.

SVN revision: 2355
This commit is contained in:
Tom Gilbert 2000-03-27 21:38:36 +00:00
parent 1af5687b9d
commit 6f11aa3ded
1 changed files with 5 additions and 2 deletions

View File

@ -49,8 +49,11 @@ This packages contains the core API libs and headers for building epplets.
if [ -z $EROOT ]; then EROOT=%{deroot}; export EROOT; fi
if [ -z $EBIN ]; then EBIN=%{debin}; export EBIN; fi
CFLAGS="$RPM_OPT_FLAGS" \
./configure --prefix=%{prefix}
if [ -z $GNOME_FRIENDLY ]; then
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix}
else
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --disable-autorespawn
fi
make