From 946130a832649b7708aa53e6c4b366655d6b4376 Mon Sep 17 00:00:00 2001 From: Bernhard Froehlich Date: Sat, 4 May 2013 13:59:54 +0200 Subject: [PATCH] Avoid "install -D" because the flag is not available on FreeBSD. --- support/posix.mk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/support/posix.mk b/support/posix.mk index 03e772da..693db1e6 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 ;\