osx: fix install
Use POSIX compliant -R parameter instead of obsolete -r. On linux they are equivalent, on OS X -r is not supported.
This commit is contained in:
parent
bde7591cc9
commit
992da6c374
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue