diff options
author | Tilman Klar <phoenix@gentoo.org> | 2003-04-01 18:10:12 +0000 |
---|---|---|
committer | Tilman Klar <phoenix@gentoo.org> | 2003-04-01 18:10:12 +0000 |
commit | 9d836ad2e8d8f74c3f5d216606a053f9064e064b (patch) | |
tree | 76a6f2fcba42b577ec7874462da46908e006e3ef /app-emulation/wine/wine-20021007.ebuild | |
parent | Initial import (diff) | |
download | historical-9d836ad2e8d8f74c3f5d216606a053f9064e064b.tar.gz historical-9d836ad2e8d8f74c3f5d216606a053f9064e064b.tar.bz2 historical-9d836ad2e8d8f74c3f5d216606a053f9064e064b.zip |
Replaced 'export C{XX}FLAGS=""' with 'unset CFLAGS CXXFLAGS' (bug #17986)
Diffstat (limited to 'app-emulation/wine/wine-20021007.ebuild')
-rw-r--r-- | app-emulation/wine/wine-20021007.ebuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/app-emulation/wine/wine-20021007.ebuild b/app-emulation/wine/wine-20021007.ebuild index fb65c94e43ca..11d459b18d94 100644 --- a/app-emulation/wine/wine-20021007.ebuild +++ b/app-emulation/wine/wine-20021007.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-20021007.ebuild,v 1.8 2003/02/28 23:27:36 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-20021007.ebuild,v 1.9 2003/04/01 18:09:22 phoenix Exp $ DESCRIPTION="free implementation of Windows(tm) on Unix" SRC_URI="ftp://metalab.unc.edu/pub/Linux/ALPHA/wine/development/Wine-${PV}.tar.gz" @@ -32,9 +32,8 @@ src_compile() { [ -z $DEBUG ] && myconf="$myconf --disable-trace --disable-debug" || myconf="$myconf --enable-trace --enable-debug" # there's no configure flag for cups, arts, alsa and nas, it's supposed to be autodetected - # the folks at #winehq were really angry about custom optimization - export CFLAGS="" - export CXXFLAGS="" + # use the default setting in ./configure over the /etc/make.conf setting + unset CFLAGS CXXFLAGS ./configure --prefix=/usr/lib/wine \ --sysconfdir=/etc/wine \ |