diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2003-04-01 22:49:30 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2003-04-01 22:49:30 +0000 |
commit | b3df6d1ecec2b3478f9f450e0004dfd916abfd40 (patch) | |
tree | 3456b9defc7f003a76daea3416a1dc14567e84db | |
parent | Clean up pkg-plist. (diff) |
Simplify the shell code used by the pre-patch target.
Suggested by: obrien
Reviewed by: Dan Nelson <dnelson@allantgroup.com>
Notes
Notes:
svn path=/head/; revision=77928
-rw-r--r-- | lang/gcc32/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lang/gcc32/Makefile b/lang/gcc32/Makefile index b509ba996ddb..fdb28159ab39 100644 --- a/lang/gcc32/Makefile +++ b/lang/gcc32/Makefile @@ -127,11 +127,10 @@ do-extract: .if defined(WITH_BOUNDSCHECKING) # Extract bounds-checking patch, removing the ada parts of the patch with sed. pre-patch: - ( cd ${_DISTDIR} && \ - ${BZCAT} ${BCPATCH} | \ - ${SED} -e '/^--- .*ada/,/^diff/d' | \ - ${PATCH} -d ${PATCH_WRKSRC} -E -p1 --quiet \ - ) + cd ${_DISTDIR} ; \ + ${BZCAT} ${BCPATCH} | \ + ${SED} -e '/^--- .*ada/,/^diff/d' | \ + ${PATCH} -d ${PATCH_WRKSRC} -E -p1 --quiet .endif pre-configure: |