From 89059b758ca9f8d9a9869b4dac73b07cfa9235b7 Mon Sep 17 00:00:00 2001 From: Rudi Schlatte Date: Sat, 3 Nov 2007 08:05:03 +0000 Subject: [PATCH] 1.0.11.4: Unset GREP_OPTIONS when filtering nm output in linux-nm * Nuke it since there is no grep option (that I could see) to reverse -i or ignore the GREP_OPTIONS variable * Patch by Daniel Lowe --- src/runtime/linux-nm | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/linux-nm b/src/runtime/linux-nm index 11d4243..65a870b 100755 --- a/src/runtime/linux-nm +++ b/src/runtime/linux-nm @@ -6,4 +6,4 @@ # " A " is a global absolute symbol, that is a symbol with a fixed # assembly time value (which is used for offset calculations). -nm -p "$@" | grep -v " [abcdgIiNnrstUuvw?-] " +nm -p "$@" | GREP_OPTIONS='' grep -v " [abcdgIiNnrstUuvw?-] " diff --git a/version.lisp-expr b/version.lisp-expr index f5b9a31..b39bc2d 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.11.3" +"1.0.11.4" -- 1.7.10.4