diff options
author | antoine <antoine@FreeBSD.org> | 2013-10-30 03:47:33 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2013-10-30 03:47:33 +0800 |
commit | aace3ea20b85928fa9c2b6cfe638f49d2b26b1fa (patch) | |
tree | 0cea0db85977173df527020ac212ba4fcf262fc9 /security/mac-robber | |
parent | fe5cb056f9a60af441c4ba2c276fc47c495d4fd6 (diff) | |
download | freebsd-ports-gnome-aace3ea20b85928fa9c2b6cfe638f49d2b26b1fa.tar.gz freebsd-ports-gnome-aace3ea20b85928fa9c2b6cfe638f49d2b26b1fa.tar.zst freebsd-ports-gnome-aace3ea20b85928fa9c2b6cfe638f49d2b26b1fa.zip |
Convert to STAGEDIR
Followup of PR: 178208
Diffstat (limited to 'security/mac-robber')
-rw-r--r-- | security/mac-robber/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/security/mac-robber/Makefile b/security/mac-robber/Makefile index eaa02af04c43..e1ae7d489900 100644 --- a/security/mac-robber/Makefile +++ b/security/mac-robber/Makefile @@ -14,19 +14,18 @@ LICENSE= GPLv2 PLIST_FILES= bin/mac-robber PORTDOCS= CHANGES README -NO_STAGE= yes do-build: cd ${WRKSRC}; ${CC} ${CFLAGS} -o mac-robber mac-robber.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/mac-robber ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/mac-robber ${STAGEDIR}${PREFIX}/bin .include <bsd.port.options.mk> post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .endif .include <bsd.port.mk> |