diff options
author | Juergen Lock <nox@FreeBSD.org> | 2007-02-09 21:08:02 +0000 |
---|---|---|
committer | Juergen Lock <nox@FreeBSD.org> | 2007-02-09 21:08:02 +0000 |
commit | d66dea020ccee32ab6a585966d8bf1b8de2a6d65 (patch) | |
tree | d979690edab5af34deef9466a8615254ed161155 /archivers/p7zip | |
parent | Speed up by removing the following obsolete tags: (diff) |
Fix build for slash-in-CFLAGS case.
Submitted by: Hisham Mardam Bey <hisham.mardambey@gmail.com>
Approved by: miwi (mentor, implicit)
Notes
Notes:
svn path=/head/; revision=184737
Diffstat (limited to 'archivers/p7zip')
-rw-r--r-- | archivers/p7zip/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archivers/p7zip/Makefile b/archivers/p7zip/Makefile index c4eb7db1b02c..f8353c3e01a0 100644 --- a/archivers/p7zip/Makefile +++ b/archivers/p7zip/Makefile @@ -43,7 +43,7 @@ CFLAGS+= -fPIC .endif post-patch: - ${SED} -e 's/-O/${CFLAGS} ${PTHREAD_CFLAGS}/' \ + ${SED} -e 's!-O!${CFLAGS} ${PTHREAD_CFLAGS}!' \ -e 's!g\+\+!${CXX}!' \ -e 's!gcc!${CC}!' \ -e '/LITTLE_ENDIAN/d' \ |