diff options
author | bapt <bapt@FreeBSD.org> | 2013-05-02 20:09:32 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-05-02 20:09:32 +0800 |
commit | dee0e4c8062ba71ae973cdc76f4735fe74a5a5b2 (patch) | |
tree | 372dba0afa65857139a2543832b72f996fc89784 | |
parent | 7c418f674582f89852b0ba5feb80a39326371150 (diff) | |
download | freebsd-ports-gnome-dee0e4c8062ba71ae973cdc76f4735fe74a5a5b2.tar.gz freebsd-ports-gnome-dee0e4c8062ba71ae973cdc76f4735fe74a5a5b2.tar.zst freebsd-ports-gnome-dee0e4c8062ba71ae973cdc76f4735fe74a5a5b2.zip |
Fix syntaxe error introduced by conversion to new options framework
-rw-r--r-- | emulators/fmsx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/fmsx/Makefile b/emulators/fmsx/Makefile index c7815566abd8..1844f72f8313 100644 --- a/emulators/fmsx/Makefile +++ b/emulators/fmsx/Makefile @@ -40,7 +40,7 @@ post-patch: ${REINPLACE_CMD} -e 's,%%LOCALBASE%%,${LOCALBASE},' \ ${WRKSRC}/fMSX/Unix/Makefile \ ${WRKSRC}/EMULib/Rules.Unix -.if ${PORT_OPTIONS:MBPP32) || defined(PACKAGE_BUILDING) || defined(BATCH} +.if ${PORT_OPTIONS:MBPP32} || defined(PACKAGE_BUILDING) || defined(BATCH) ${REINPLACE_CMD} -e 's/BPP16/BPP32/' ${WRKSRC}/fMSX/Unix/Makefile .endif .if ${PORT_OPTIONS:MBPP24} |