Avoid "install -D" because the flag is not available on FreeBSD.
This commit is contained in:
parent
8d814e9b51
commit
51ca7c6c55
1 changed files with 4 additions and 2 deletions
|
@ -5,8 +5,10 @@ INSTICON= ${DESTDIR}$(prefix)/share/icons/hicolor/scalable/apps
|
|||
|
||||
|
||||
install: ${PROG} ${MAN}
|
||||
install -D ${PROG} ${DESTDIR}${bindir}/tvheadend
|
||||
install -D ${MAN} ${DESTDIR}${mandir}/tvheadend.1
|
||||
install -d ${DESTDIR}${bindir}
|
||||
install ${PROG} ${DESTDIR}${bindir}/tvheadend
|
||||
install -d ${DESTDIR}${mandir}
|
||||
install ${MAN} ${DESTDIR}${mandir}/tvheadend.1
|
||||
|
||||
for bundle in ${BUNDLES}; do \
|
||||
mkdir -p ${DESTDIR}${datadir}/tvheadend/$$bundle ;\
|
||||
|
|
Loading…
Add table
Reference in a new issue