diff options
author | sobomax <sobomax@FreeBSD.org> | 2002-07-19 00:03:14 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2002-07-19 00:03:14 +0800 |
commit | e3c2ad9560fffe04ad4067de40da4122a016889c (patch) | |
tree | 4d92733e1a0eafee45ec6b0e7ccaea8319e8615f | |
parent | c968123ee2b4b39b2ad9dc3600041cb01f501bef (diff) | |
download | freebsd-ports-gnome-e3c2ad9560fffe04ad4067de40da4122a016889c.tar.gz freebsd-ports-gnome-e3c2ad9560fffe04ad4067de40da4122a016889c.tar.zst freebsd-ports-gnome-e3c2ad9560fffe04ad4067de40da4122a016889c.zip |
`%' has no special meaning for sed(1) in RE, so that there is no need to put
in into square brackets.
-rw-r--r-- | textproc/libxml2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/libxml2/Makefile b/textproc/libxml2/Makefile index e71cbff5b1a1..d89d5eb02321 100644 --- a/textproc/libxml2/Makefile +++ b/textproc/libxml2/Makefile @@ -52,7 +52,7 @@ pre-patch: 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' post-patch: - @${REINPLACE_CMD} -e 's|[%][%]LOCALBASE[%][%]|${LOCALBASE}|g' \ + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/catalog.c ${WRKSRC}/xmlcatalog.c .include <bsd.port.mk> |