diff options
author | mi <mi@FreeBSD.org> | 2004-12-15 08:06:16 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2004-12-15 08:06:16 +0800 |
commit | 869ac8fdb1dd1ae5b5279098c2652182feb4b4f1 (patch) | |
tree | 109b2a4e3d99ea42b0ca715ce46ffe00221b2e24 | |
parent | 86e0d51479c98bc2d5bd12f0dbe1ebe812d6cc94 (diff) | |
download | freebsd-ports-gnome-869ac8fdb1dd1ae5b5279098c2652182feb4b4f1.tar.gz freebsd-ports-gnome-869ac8fdb1dd1ae5b5279098c2652182feb4b4f1.tar.zst freebsd-ports-gnome-869ac8fdb1dd1ae5b5279098c2652182feb4b4f1.zip |
Use vertical bar (``|'') instead of coma (``,'') for
sed-substitutions. Comas can occur within CFLAGS now.
-rw-r--r-- | devel/pth/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/pth/Makefile b/devel/pth/Makefile index f70cdd654280..7f3a9451627c 100644 --- a/devel/pth/Makefile +++ b/devel/pth/Makefile @@ -33,7 +33,7 @@ MAN3= pth.3 pthread.3 post-patch: .if !defined(WITH_OPTIMIZED_CFLAGS) || defined(WITHOUT_OPTIMIZED_CFLAGS) ${REINPLACE_CMD} -e \ - "s,-funroll-loops -fstrength-reduce -fomit-frame-pointer -ffast-math,${CFLAGS}," \ + 's|-funroll-loops -fstrength-reduce -fomit-frame-pointer -ffast-math|${CFLAGS}|' \ ${WRKSRC}/configure .endif |