diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2017-01-09 21:16:49 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2017-01-09 21:16:49 +0800 |
commit | f3daf2261fb178366adda1ccfd67d90513f16f2a (patch) | |
tree | 263754af5ddd95f1ad55b06c101378a0cf71009b /ports-mgmt/synth | |
parent | cc1bd708b05005e884e1cb06113168318d3dbe5a (diff) | |
download | freebsd-ports-gnome-f3daf2261fb178366adda1ccfd67d90513f16f2a.tar.gz freebsd-ports-gnome-f3daf2261fb178366adda1ccfd67d90513f16f2a.tar.zst freebsd-ports-gnome-f3daf2261fb178366adda1ccfd67d90513f16f2a.zip |
- Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOL
Approved by: portmgr blanket
Diffstat (limited to 'ports-mgmt/synth')
-rw-r--r-- | ports-mgmt/synth/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ports-mgmt/synth/Makefile b/ports-mgmt/synth/Makefile index 275f82d269f2..2b88fcb85c41 100644 --- a/ports-mgmt/synth/Makefile +++ b/ports-mgmt/synth/Makefile @@ -26,9 +26,8 @@ MAKE_ENV= NCURSES_LINK=static .include <bsd.port.pre.mk> post-extract: -.if (${OPSYS} == FreeBSD && ${OSVERSION} < 1000000) || \ - (${OPSYS} == DragonFly && ${OSVERSION} < 400600) - ${REINPLACE_CMD} -e 's|"re"|"r"|' ${WRKSRC}/src/unix.adb +.if ${OPSYS} == DragonFly && ${OSVERSION} < 400600 + @${REINPLACE_CMD} -e 's|"re"|"r"|' ${WRKSRC}/src/unix.adb .endif @${REINPLACE_CMD} -e "s|/usr/local|${LOCALBASE}|" \ ${WRKSRC}/src/definitions.ads |