diff options
author | garga <garga@FreeBSD.org> | 2013-11-01 07:51:32 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2013-11-01 07:51:32 +0800 |
commit | 0c282a6bf4f64a0e2136a6359fcd1a15cb01bdbe (patch) | |
tree | 52886bdd17bf3955ef1dedae56d2156b7a0d7a20 /x11 | |
parent | c71ed54458c4f212515ee4fdf075cff7f515cced (diff) | |
download | freebsd-ports-gnome-0c282a6bf4f64a0e2136a6359fcd1a15cb01bdbe.tar.gz freebsd-ports-gnome-0c282a6bf4f64a0e2136a6359fcd1a15cb01bdbe.tar.zst freebsd-ports-gnome-0c282a6bf4f64a0e2136a6359fcd1a15cb01bdbe.zip |
. Support STAGE
. Simplify Makefile
Diffstat (limited to 'x11')
-rw-r--r-- | x11/gmrun/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/x11/gmrun/Makefile b/x11/gmrun/Makefile index ce7bc1d63941..6de5a33fc937 100644 --- a/x11/gmrun/Makefile +++ b/x11/gmrun/Makefile @@ -25,7 +25,6 @@ PORTDOCS= README PLIST_FILES= bin/gmrun %%DATADIR%%/gmrunrc PLIST_DIRS= %%DATADIR%% -NO_STAGE= yes .include <bsd.port.pre.mk> post-patch: @@ -38,9 +37,7 @@ post-patch: .endif post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .include <bsd.port.post.mk> |