Author: nbd Date: 2014-06-30 08:50:22 +0200 (Mon, 30 Jun 2014) New Revision: 41407
Modified: trunk/scripts/env trunk/scripts/feeds Log: scripts: unset GREP_OPTIONS in env and feeds (fixes #16924) Signed-off-by: Felix Fietkau <[email protected]> Modified: trunk/scripts/env =================================================================== --- trunk/scripts/env 2014-06-29 23:29:57 UTC (rev 41406) +++ trunk/scripts/env 2014-06-30 06:50:22 UTC (rev 41407) @@ -1,6 +1,7 @@ #!/usr/bin/env bash BASEDIR="$PWD" ENVDIR="$PWD/env" +export GREP_OPTIONS= usage() { cat <<EOF Modified: trunk/scripts/feeds =================================================================== --- trunk/scripts/feeds 2014-06-29 23:29:57 UTC (rev 41406) +++ trunk/scripts/feeds 2014-06-30 06:50:22 UTC (rev 41407) @@ -11,6 +11,7 @@ chdir "$FindBin::Bin/.."; $ENV{TOPDIR}=getcwd(); $ENV{GIT_CONFIG_PARAMETERS}="'core.autocrlf=false'"; +$ENV{GREP_OPTIONS}=""; my $mk=`which gmake 2>/dev/null`; # select the right 'make' program chomp($mk); # trim trailing newline _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
