diff options
author | Nick Hadaway <raker@gentoo.org> | 2003-07-30 13:53:13 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2003-07-30 13:53:13 +0000 |
commit | 80e1912d311f0d06abdc4ce6bcfe1a40c7528706 (patch) | |
tree | d91ddecfb88f416f0b32468def5d7ad4b4321581 /eclass/gnustep.eclass | |
parent | stable on x86/alpha (diff) | |
download | gentoo-2-80e1912d311f0d06abdc4ce6bcfe1a40c7528706.tar.gz gentoo-2-80e1912d311f0d06abdc4ce6bcfe1a40c7528706.tar.bz2 gentoo-2-80e1912d311f0d06abdc4ce6bcfe1a40c7528706.zip |
fixed the "line 65" error and hopefully there will be no more failures
on systems with userpriv and usersandbox enabled.
Diffstat (limited to 'eclass/gnustep.eclass')
-rw-r--r-- | eclass/gnustep.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/gnustep.eclass b/eclass/gnustep.eclass index 47fb18b4d305..334eec9ddf4f 100644 --- a/eclass/gnustep.eclass +++ b/eclass/gnustep.eclass @@ -32,8 +32,8 @@ need-gnustep-gui() { egnustepmake() { getsourcedir - addwrite ~/GNUstep/Defaults/.GNUstepDefaults.lck - addpredict ~/GNUstep + addwrite /root/GNUstep/Defaults/.GNUstepDefaults.lck + addpredict /root/GNUstep cd ${S} @@ -62,7 +62,7 @@ egnustepmake() { fi fi - if [ ! "${GNUSTEPBACK_XFT}" -eq 2 ] ; then + if [ "${GNUSTEPBACK_XFT}" != "2" ] ; then if [ "${PN}" = "gnustep-back" ] ; then if [ ! -f "/usr/X11R6/include/X11/Xft1/Xft.h" ]; then sed "s,^#define HAVE_XFT.*,#undef HAVE_XFT,g" config.h > config.h.new @@ -87,8 +87,8 @@ egnustepmake() { egnustepinstall() { getsourcedir - addwrite ~/GNUstep/Defaults/.GNUstepDefaults.lck - addpredict ~/GNUstep + addwrite /root/GNUstep/Defaults/.GNUstepDefaults.lck + addpredict /root/GNUstep cd ${S} |