diff options
author | John Marino <marino@FreeBSD.org> | 2015-02-02 16:32:47 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2015-02-02 16:32:47 +0000 |
commit | e84d8987b298a92c176ec37d898f207143d538b4 (patch) | |
tree | 95134bb340a611dec1709bca2a69f62f2c978d8d /x11-wm/swm | |
parent | a98cbcec8f743f89611d7fac710ac6a7f63c02e4 (diff) | |
download | ports-e84d8987b298a92c176ec37d898f207143d538b4.tar.gz ports-e84d8987b298a92c176ec37d898f207143d538b4.zip |
Notes
Diffstat (limited to 'x11-wm/swm')
-rw-r--r-- | x11-wm/swm/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/x11-wm/swm/Makefile b/x11-wm/swm/Makefile index 5982a4601a46..087fdad8411d 100644 --- a/x11-wm/swm/Makefile +++ b/x11-wm/swm/Makefile @@ -34,6 +34,8 @@ SCRIPTS= startswm DATA= background.xpm closebox.xpm maxbox.xpm stickybox.xpm \ swm.colors unstickybox.xpm +MAKE_JOBS_UNSAFE= yes + post-patch: @${REINPLACE_CMD} -e 's|monotype|fixed|g ; \ s|/usr/share/swm|${DATADIR}|g' ${WRKSRC}/swm.conf @@ -45,11 +47,11 @@ post-build: *.c -o ${WRKSRC}/swmswitch -lX11 -L${LOCALBASE}/lib do-install: -.for file in ${BINS} - ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin +.for f in ${BINS} + ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin .endfor -.for file in ${SCRIPTS} - ${INSTALL_SCRIPT} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin +.for f in ${SCRIPTS} + ${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin .endfor ${INSTALL_MAN} ${WRKSRC}/swm.1x ${STAGEDIR}${MANPREFIX}/man/man1/swm.1 ${INSTALL_MAN} ${WRKSRC}/../swmbg/swmbg.1x ${STAGEDIR}${MANPREFIX}/man/man1/swmbg.1 |