diff options
author | Juergen Lock <nox@FreeBSD.org> | 2011-08-18 17:03:05 +0000 |
---|---|---|
committer | Juergen Lock <nox@FreeBSD.org> | 2011-08-18 17:03:05 +0000 |
commit | 1c9ee5299427b91f5bcdf4664adc9aabe3cbf579 (patch) | |
tree | 8fec2864734ce21872afbd6b35effe240113fd06 /multimedia/vdr-plugin-markad/files | |
parent | 3a9dc229c81d924d76a3df4d6f441e912c683c4b (diff) | |
download | ports-1c9ee5299427b91f5bcdf4664adc9aabe3cbf579.tar.gz ports-1c9ee5299427b91f5bcdf4664adc9aabe3cbf579.zip |
More sub-Makefile fixes to pass through CC/CXX. (I hope all vdr ports
now finally build with clang properly...)
Notes
Notes:
svn path=/head/; revision=279977
Diffstat (limited to 'multimedia/vdr-plugin-markad/files')
-rw-r--r-- | multimedia/vdr-plugin-markad/files/patch-Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/multimedia/vdr-plugin-markad/files/patch-Makefile b/multimedia/vdr-plugin-markad/files/patch-Makefile new file mode 100644 index 000000000000..ea88f18e6a83 --- /dev/null +++ b/multimedia/vdr-plugin-markad/files/patch-Makefile @@ -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) |