diff options
author | pav <pav@FreeBSD.org> | 2005-08-31 20:17:23 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-08-31 20:17:23 +0000 |
commit | b7bc429a6c98dc3fff438b009b2e365f57d063c5 (patch) | |
tree | 74f189751dced934bd5441fc6cf77939b3212420 /net/samba | |
parent | e8807ecfe4f4ced734d2f249b403d0f7f28acbd2 (diff) | |
download | FreeBSD-ports-b7bc429a6c98dc3fff438b009b2e365f57d063c5.zip FreeBSD-ports-b7bc429a6c98dc3fff438b009b2e365f57d063c5.tar.gz |
- Fix build with certain options
PR: ports/85517
Submitted by: rik
Diffstat (limited to 'net/samba')
-rw-r--r-- | net/samba/files/patch-examples-VFS-Makefile.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/net/samba/files/patch-examples-VFS-Makefile.in b/net/samba/files/patch-examples-VFS-Makefile.in new file mode 100644 index 0000000..523622d --- /dev/null +++ b/net/samba/files/patch-examples-VFS-Makefile.in @@ -0,0 +1,16 @@ +--- examples/VFS/Makefile.in.orig Thu Aug 12 20:24:58 2004 ++++ examples/VFS/Makefile.in Wed Aug 31 22:11:55 2005 +@@ -17,11 +17,11 @@ + + %.so: %.lo + @echo Linking $< +- @$(LIBTOOL) --mode=link $(CC) -o $@ $< $(LDFLAGS) ++ @$(LIBTOOL) --mode=link --tag=CC $(CC) -o $@ $< $(LDFLAGS) + + %.lo: %.c + @echo Compiling $< +- @$(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ ++ @$(LIBTOOL) --mode=compile --tag=CC $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ + + # Misc targets + |