mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
More sub-Makefile fixes to pass through CC/CXX. (I hope all vdr ports
now finally build with clang properly...)
This commit is contained in:
parent
3a9dc229c8
commit
1c9ee52994
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=279977
15
multimedia/vdr-plugin-markad/files/patch-Makefile
Normal file
15
multimedia/vdr-plugin-markad/files/patch-Makefile
Normal file
@ -0,0 +1,15 @@
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -13,10 +13,10 @@ ARCHIVE = markad-$(VERSION)
|
||||
PACKAGE = vdr-$(ARCHIVE)
|
||||
|
||||
all:
|
||||
- for i in $(DIRS); do $(MAKE) -C $$i; done
|
||||
+ for i in $(DIRS); do $(MAKE) -C $$i CC=${CC} CXX=${CXX}; done
|
||||
|
||||
install:
|
||||
- for i in $(DIRS); do $(MAKE) -C $$i install; done
|
||||
+ for i in $(DIRS); do $(MAKE) -C $$i CC=${CC} CXX=${CXX} install; done
|
||||
|
||||
dist:
|
||||
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
Loading…
Reference in New Issue
Block a user