diff options
author | daichi <daichi@FreeBSD.org> | 2012-01-29 14:26:52 +0800 |
---|---|---|
committer | daichi <daichi@FreeBSD.org> | 2012-01-29 14:26:52 +0800 |
commit | a8ff9f054cb403cd4d0914c5c2e717021e4fec66 (patch) | |
tree | 80b59fde538bb9be1749b1137cbc82006142013c | |
parent | 46c7cb3e819bbe95b9cb9cd2675ac82f3d64c681 (diff) | |
download | freebsd-ports-gnome-a8ff9f054cb403cd4d0914c5c2e717021e4fec66.tar.gz freebsd-ports-gnome-a8ff9f054cb403cd4d0914c5c2e717021e4fec66.tar.zst freebsd-ports-gnome-a8ff9f054cb403cd4d0914c5c2e717021e4fec66.zip |
Simplified LOCALBASE and INCLUDEDIR replacement treatment
-rw-r--r-- | japanese/ibus-anthy/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/japanese/ibus-anthy/Makefile b/japanese/ibus-anthy/Makefile index e01c4b4f652a..30a033e15e23 100644 --- a/japanese/ibus-anthy/Makefile +++ b/japanese/ibus-anthy/Makefile @@ -36,9 +36,9 @@ INCLUDEDIR_REPLACE_FILES= \ post-patch: cd ${WRKSRC} && \ - ${REINPLACE_CMD} "s/@@LOCALBASE@@/${LOCALBASE:S/\//\\\//g}/g" \ + ${REINPLACE_CMD} "s,@@LOCALBASE@@,${LOCALBASE},g" \ ${LOCALBASE_REPLACE_FILES} && \ - ${REINPLACE_CMD} "s/@@INCLUDEDIR@@/${INCLUDEDIR:S/\//\\\//g}/g" \ + ${REINPLACE_CMD} "s,@@INCLUDEDIR@@,${INCLUDEDIR},g" \ ${INCLUDEDIR_REPLACE_FILES} post-install: |