1.0.11.4: Unset GREP_OPTIONS when filtering nm output in linux-nm
authorRudi Schlatte <rudi@constantly.at>
Sat, 3 Nov 2007 08:05:03 +0000 (08:05 +0000)
committerRudi Schlatte <rudi@constantly.at>
Sat, 3 Nov 2007 08:05:03 +0000 (08:05 +0000)
  * 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
version.lisp-expr

index 11d4243..65a870b 100755 (executable)
@@ -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?-] "
index f5b9a31..b39bc2d 100644 (file)
@@ -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"