Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix installation with DESTDIR
Addendum to 0e09a22.
  • Loading branch information
ryandesign committed Jun 2, 2018
1 parent 4d4eb1c commit d915a33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Mk/macports.tea.mk
Expand Up @@ -20,6 +20,6 @@ INSTALLTARGET ?= install-real

install:: $(INSTALLTARGET)
$(INSTALLTARGET):: all
$(INSTALL) -d -o "${DSTUSR}" -g "${DSTGRP}" -m "${DSTMODE}" "${INSTALLDIR}"
$(INSTALL) -o "${DSTUSR}" -g "${DSTGRP}" -m 444 ${SHLIB_NAME} "${INSTALLDIR}"
$(INSTALL) -o "${DSTUSR}" -g "${DSTGRP}" -m 444 pkgIndex.tcl "${INSTALLDIR}"
$(INSTALL) -d -o "${DSTUSR}" -g "${DSTGRP}" -m "${DSTMODE}" "${DESTDIR}${INSTALLDIR}"
$(INSTALL) -o "${DSTUSR}" -g "${DSTGRP}" -m 444 ${SHLIB_NAME} "${DESTDIR}${INSTALLDIR}"
$(INSTALL) -o "${DSTUSR}" -g "${DSTGRP}" -m 444 pkgIndex.tcl "${DESTDIR}${INSTALLDIR}"

0 comments on commit d915a33

Please sign in to comment.