diff options
author | mezz <mezz@FreeBSD.org> | 2011-03-13 02:12:57 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2011-03-13 02:12:57 +0800 |
commit | 2c3ee19720932dc0a62d16d198a034c36979fc5a (patch) | |
tree | 3128f861a9e13c0e288aaaf849d9f60695cdd047 /audio | |
parent | e85ce3415ce74bc28cfad1d121c594b754c483f3 (diff) | |
download | freebsd-ports-gnome-2c3ee19720932dc0a62d16d198a034c36979fc5a.tar.gz freebsd-ports-gnome-2c3ee19720932dc0a62d16d198a034c36979fc5a.tar.zst freebsd-ports-gnome-2c3ee19720932dc0a62d16d198a034c36979fc5a.zip |
Fix the build with gmake-3.82 by add '/' in two targets.
Reported by: pointyhat-exp with gmake 3.82 (linimon)
Tested with: ade's gmake 3.82 patch on devel/gmake only
Diffstat (limited to 'audio')
-rw-r--r-- | audio/portaudio/files/patch-Makefile.in | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/audio/portaudio/files/patch-Makefile.in b/audio/portaudio/files/patch-Makefile.in index b0d24b715502..782b22c9c758 100644 --- a/audio/portaudio/files/patch-Makefile.in +++ b/audio/portaudio/files/patch-Makefile.in @@ -1,5 +1,5 @@ ---- Makefile.in.orig Mon Mar 15 15:51:08 2004 -+++ Makefile.in Mon Mar 15 15:51:59 2004 +--- Makefile.in.orig 2011-03-12 12:04:08.000000000 -0600 ++++ Makefile.in 2011-03-12 12:04:22.000000000 -0600 @@ -15,6 +15,7 @@ DLL_LIBS = @DLL_LIBS@ @@ -46,3 +46,14 @@ $(TESTS): bin/%: lib/$(PALIB) Makefile $(PAINC) pa_tests/%.c $(CC) -o $@ $(CFLAGS) pa_tests/$*.c lib/$(PALIB) $(LIBS) +@@ -89,8 +101,8 @@ + %.o: %.c Makefile $(PAINC) + $(CC) -c $(CFLAGS) $< -o $@ + +-bin: ++bin/: + mkdir bin + +-lib: ++lib/: + mkdir lib |