From: Bernhard Froehlich Date: Sat, 4 May 2013 11:59:54 +0000 (+0200) Subject: Avoid "install -D" because the flag is not available on FreeBSD. X-Git-Tag: v3.9~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=51ca7c6c55465dc5aeef0aafc87c69292906a531;p=thirdparty%2Ftvheadend.git Avoid "install -D" because the flag is not available on FreeBSD. --- diff --git a/support/posix.mk b/support/posix.mk index 03e772da7..693db1e69 100644 --- a/support/posix.mk +++ b/support/posix.mk @@ -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 ;\