]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Avoid "install -D" because the flag is not available on FreeBSD.
authorBernhard Froehlich <decke@bluelife.at>
Sat, 4 May 2013 11:59:54 +0000 (13:59 +0200)
committerAdam Sutton <dev@adamsutton.me.uk>
Fri, 31 May 2013 13:19:24 +0000 (14:19 +0100)
support/posix.mk

index 03e772da73175730abebfcbed683474bf50ce084..693db1e697a49917b42184adb74f638b2b96d630 100644 (file)
@@ -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 ;\