diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2006-08-11 10:59:32 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2006-08-11 10:59:32 +0000 |
commit | cd95004ee08172136d85f9967df47d883cc5eb27 (patch) | |
tree | cb26e4fbdd63e921db7d956956ea2adb554333e5 /audio/yell/Makefile | |
parent | Upgrade graphics/xaralx-devel from 0.7r1640 to 0.7r1687 (diff) |
Respect DESTDIR
PR: 101674
Submitted by: gabor
Notes
Notes:
svn path=/head/; revision=170341
Diffstat (limited to '')
-rw-r--r-- | audio/yell/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/yell/Makefile b/audio/yell/Makefile index d7f793414e2e..db8b26c97ea8 100644 --- a/audio/yell/Makefile +++ b/audio/yell/Makefile @@ -31,9 +31,9 @@ do-build: do-install: .if defined(WITH_SUID) - ${INSTALL_PROGRAM} -m 4110 ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_PROGRAM} -m 4110 ${WRKSRC}/${PORTNAME} ${TARGETDIR}/bin .else - ${INSTALL_PROGRAM} -m 0100 ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_PROGRAM} -m 0100 ${WRKSRC}/${PORTNAME} ${TARGETDIR}/bin .endif post-install: |