diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-09-24 05:34:19 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-09-24 05:34:19 +0000 |
commit | a9cb05c6da9b9ab0ab48fd01b1fb240a4e0bc4a2 (patch) | |
tree | 73db074050101b925b3b2aa4d122b1f5319a7fa5 /media-libs/ladspa-cmt | |
parent | Fixes stdc++ linking issue. Closes #3876 (diff) | |
download | gentoo-2-a9cb05c6da9b9ab0ab48fd01b1fb240a4e0bc4a2.tar.gz gentoo-2-a9cb05c6da9b9ab0ab48fd01b1fb240a4e0bc4a2.tar.bz2 gentoo-2-a9cb05c6da9b9ab0ab48fd01b1fb240a4e0bc4a2.zip |
Fixed SED statement. Closes #8185
Diffstat (limited to 'media-libs/ladspa-cmt')
-rw-r--r-- | media-libs/ladspa-cmt/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/ladspa-cmt/ladspa-cmt-1.14.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/media-libs/ladspa-cmt/ChangeLog b/media-libs/ladspa-cmt/ChangeLog index 87fcc1e09b20..fc1e19878ca9 100644 --- a/media-libs/ladspa-cmt/ChangeLog +++ b/media-libs/ladspa-cmt/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for media-libs/ladspa-cmt # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ChangeLog,v 1.1 2002/08/19 00:21:39 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ChangeLog,v 1.2 2002/09/24 05:34:18 rphillips Exp $ *ladspa-cmt-1.14 (18 Aug 2002) + 23 Sep 2002; Ryan Phillips <rphillips@gentoo.org> ladspa-cmt-1.14.ebuild : + + Fixed SED statement. Closes #8185 + 18 Aug 2002; Ryan Phillips <rphillips@gentoo.org> ladspa-cmt-1.14.ebuild files/digest-ladspa-cmt-1.14 : diff --git a/media-libs/ladspa-cmt/ladspa-cmt-1.14.ebuild b/media-libs/ladspa-cmt/ladspa-cmt-1.14.ebuild index e988980c83b1..d67f60b19605 100644 --- a/media-libs/ladspa-cmt/ladspa-cmt-1.14.ebuild +++ b/media-libs/ladspa-cmt/ladspa-cmt-1.14.ebuild @@ -1,5 +1,5 @@ # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ladspa-cmt-1.14.ebuild,v 1.1 2002/08/19 00:21:39 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ladspa-cmt-1.14.ebuild,v 1.2 2002/09/24 05:34:19 rphillips Exp $ DESCRIPTION="CMT (computer music toolkit) Lasdpa library plugins" HOMEPAGE="http://www.ladspa.org/" @@ -19,8 +19,8 @@ src_unpack() { unpack "${A}" cd "${S}" sed -e "/^CFLAGS/ s/-O3/${CFLAGS}/" \ - -e 's|/usr/local/include|/usr/include|g' \ - -e 's|/usr/local/lib|/usr/lib|g' \ + -e 's|/usr/local/include||g' \ + -e 's|/usr/local/lib||g' \ makefile > makefile.new mv makefile.new makefile |