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 | 737e931655ad8d37d94d9544e918f8d9f6c0dc56 (patch) | |
tree | c948ffa9667aeb8cf49aad0b33a99e4000f90ee4 /app-doc/psmark/files | |
parent | alpha/arm/ia64/sh/sparc stable wrt #287362 (diff) | |
download | historical-737e931655ad8d37d94d9544e918f8d9f6c0dc56.tar.gz historical-737e931655ad8d37d94d9544e918f8d9f6c0dc56.tar.bz2 historical-737e931655ad8d37d94d9544e918f8d9f6c0dc56.zip |
respecting LDFLAGS, fixing pre-stripped files bug 240001, respecting CC variable bug 243554, fixing repoman warnings
Package-Manager: portage-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/ |