diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-05-30 22:47:19 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-05-30 22:47:19 +0000 |
commit | 652f7ea955bb433d6b7a4d33685dca9485fd7b8b (patch) | |
tree | 0767e9795827970bb39980558044dfd47703795c /utils | |
parent | 8666cc3b99cccef39281c715754e551a2b14363d (diff) |
Revert 51775.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51795 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/GenLibDeps.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/GenLibDeps.pl b/utils/GenLibDeps.pl index 35811b4e3c..74eedd3383 100755 --- a/utils/GenLibDeps.pl +++ b/utils/GenLibDeps.pl @@ -96,7 +96,7 @@ sub gen_one_entry { print " <dt><b>$lib</b</dt><dd><ul>\n"; } open UNDEFS, - "$nmPath -g -u $Directory/$lib | sed -e 's/^[ 0]* U //' | sort | uniq |"; + "$nmPath -g -u $Directory/$lib | sed -e 's/^ *U //' | sort | uniq |"; my %DepLibs; while (<UNDEFS>) { chomp; |