From 992da6c374f16787b6337afc5e658caa4bda72b3 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Tue, 27 May 2014 23:15:21 +0200 Subject: [PATCH] osx: fix install Use POSIX compliant -R parameter instead of obsolete -r. On linux they are equivalent, on OS X -r is not supported. --- support/posix.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/posix.mk b/support/posix.mk index 404245a9..0e463c89 100644 --- a/support/posix.mk +++ b/support/posix.mk @@ -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