diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-12-18 11:03:51 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-12-18 11:03:51 +0000 |
commit | 266e71c1602aa03479a1bcbe66e5de281491669e (patch) | |
tree | b92598d7d5f62e0f5ed4d23cd1d341b8c955f2ee /patches | |
parent | Output a warning if the patch failed to apply but it's not required. (diff) | |
download | autoepatch-266e71c1602aa03479a1bcbe66e5de281491669e.tar.gz autoepatch-266e71c1602aa03479a1bcbe66e5de281491669e.tar.bz2 autoepatch-266e71c1602aa03479a1bcbe66e5de281491669e.zip |
Use --null parameter instead of -Z as -Z is overloaded in FBSD's own grep command.
svn path=/trunk/; revision=14
Diffstat (limited to 'patches')
-rw-r--r-- | patches/fbsd-conf/fbsd-conf.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/patches/fbsd-conf/fbsd-conf.sh b/patches/fbsd-conf/fbsd-conf.sh index 4e59648..31cbd02 100644 --- a/patches/fbsd-conf/fbsd-conf.sh +++ b/patches/fbsd-conf/fbsd-conf.sh @@ -5,7 +5,7 @@ patch_targets() { # Find the configure scripts with a libtool that checks for freebsd # versioning format, and that were not patched with our patch already find "${WORKDIR}" -name configure -print0 | \ - xargs -0 grep -Zl "version_type=freebsd-" | \ + xargs -0 grep --null -l "version_type=freebsd-" | \ xargs -0 grep -L 'Handle Gentoo/FreeBSD as it was Linux' } |