]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
osx: fix install
authorDamjan Marion <damjan.marion@gmail.com>
Tue, 27 May 2014 21:15:21 +0000 (23:15 +0200)
committerDamjan Marion <damjan.marion@gmail.com>
Wed, 28 May 2014 22:44:12 +0000 (00:44 +0200)
Use POSIX compliant -R parameter instead of obsolete -r.
On linux they are equivalent, on OS X -r is not supported.

support/posix.mk

index 404245a9aa726305156bda3c0c302411de919c85..0e463c89e22b9fe2e74e9be832d08b75b239339c 100644 (file)
@@ -12,7 +12,7 @@ install: ${PROG} ${MAN}
 
        for bundle in ${BUNDLES}; do \
                mkdir -p ${DESTDIR}${datadir}/tvheadend/$$bundle ;\
-               cp -Lr $(ROOTDIR)/$$bundle/*  ${DESTDIR}${datadir}/tvheadend/$$bundle ;\
+               cp -LR $(ROOTDIR)/$$bundle/*  ${DESTDIR}${datadir}/tvheadend/$$bundle ;\
        done
 
        find ${DESTDIR}${datadir}/tvheadend -name .git -exec rm -rf {} \; &>/dev/null || /bin/true