diff options
author | Victor Ostorga <vostorga@gentoo.org> | 2009-10-04 19:14:38 +0000 |
---|---|---|
committer | Victor Ostorga <vostorga@gentoo.org> | 2009-10-04 19:14:38 +0000 |
commit | 1d583017795f40565c45cb4cf44c7d8005da0d48 (patch) | |
tree | cfca836d6f9c5076d96180adfb05dd89694973c5 /app-doc/psmark/files | |
parent | alpha/arm/ia64/sh/sparc stable wrt #287362 (diff) | |
download | gentoo-2-1d583017795f40565c45cb4cf44c7d8005da0d48.tar.gz gentoo-2-1d583017795f40565c45cb4cf44c7d8005da0d48.tar.bz2 gentoo-2-1d583017795f40565c45cb4cf44c7d8005da0d48.zip |
respecting LDFLAGS, fixing pre-stripped files bug 240001, respecting CC variable bug 243554, fixing repoman warnings
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'app-doc/psmark/files')
-rw-r--r-- | app-doc/psmark/files/psmark-2.1-Makefile-QA.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app-doc/psmark/files/psmark-2.1-Makefile-QA.patch b/app-doc/psmark/files/psmark-2.1-Makefile-QA.patch new file mode 100644 index 000000000000..30a81498bf6d --- /dev/null +++ b/app-doc/psmark/files/psmark-2.1-Makefile-QA.patch @@ -0,0 +1,19 @@ +--- Makefile.original 2009-10-04 19:06:09.000000000 -0600 ++++ Makefile 2009-10-04 19:08:25.000000000 -0600 +@@ -3,14 +3,13 @@ + all: + make clean + make psmark + + psmark: +- gcc $(CFLAGS) -o psmark psmark.c +- strip psmark ++ $(CC) $(CFLAGS) $(LDFLAGS) -o psmark psmark.c + + clean: + rm -f *.o psmark + + install: +- install -s psmark /usr/bin/ ++ install psmark /usr/bin/ + install psmark.1 /usr/man/man1/ |