diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2009-10-12 16:56:39 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2009-10-12 16:56:39 +0000 |
commit | bfdd929d95fa9e8ebf0078ea06d10d3cdd2b957a (patch) | |
tree | 85ad31a2d6b6c95b766845d7f54b53ae83712ebd /app-arch/mt-st | |
parent | QA fixes; redundant "cd " (diff) | |
download | historical-bfdd929d95fa9e8ebf0078ea06d10d3cdd2b957a.tar.gz historical-bfdd929d95fa9e8ebf0078ea06d10d3cdd2b957a.tar.bz2 historical-bfdd929d95fa9e8ebf0078ea06d10d3cdd2b957a.zip |
QA fixes; unquoted variables
Package-Manager: portage-2.2_rc45/cvs/Linux x86_64
Diffstat (limited to 'app-arch/mt-st')
-rw-r--r-- | app-arch/mt-st/ChangeLog | 5 | ||||
-rw-r--r-- | app-arch/mt-st/mt-st-0.9b.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app-arch/mt-st/ChangeLog b/app-arch/mt-st/ChangeLog index 2f34773cd178..d0278aa51208 100644 --- a/app-arch/mt-st/ChangeLog +++ b/app-arch/mt-st/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-arch/mt-st # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/mt-st/ChangeLog,v 1.31 2009/09/23 15:10:20 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/mt-st/ChangeLog,v 1.32 2009/10/12 16:43:45 halcy0n Exp $ + + 12 Oct 2009; Mark Loeser <halcy0n@gentoo.org> mt-st-0.9b.ebuild: + QA fixes; unquoted variables 23 Sep 2009; Patrick Lauer <patrick@gentoo.org> mt-st-0.9b.ebuild: Remove virtual/libc diff --git a/app-arch/mt-st/mt-st-0.9b.ebuild b/app-arch/mt-st/mt-st-0.9b.ebuild index 32e2dc88f9e6..3f27aaf4242b 100644 --- a/app-arch/mt-st/mt-st-0.9b.ebuild +++ b/app-arch/mt-st/mt-st-0.9b.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/mt-st/mt-st-0.9b.ebuild,v 1.10 2009/09/23 15:10:20 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/mt-st/mt-st-0.9b.ebuild,v 1.11 2009/10/12 16:43:45 halcy0n Exp $ inherit eutils toolchain-funcs @@ -17,7 +17,7 @@ DEPEND="" src_unpack() { unpack ${A} || die - cd ${S} || die + cd "${S}" || die sed -i -e "s:-O2:${CFLAGS}:g" Makefile # needed for linux kernels >=2.6.20 |