diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-05-30 17:16:20 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-05-30 17:16:20 +0000 |
commit | 81b28cb865b94e71e708dea869eccb69c3f80030 (patch) | |
tree | 816778a63435b4ba76dc9c06038b28739fcf38f1 /utils | |
parent | 5e27009c747bb77967f556db92d7f2c3d43ecdb3 (diff) | |
download | external_llvm-81b28cb865b94e71e708dea869eccb69c3f80030.zip external_llvm-81b28cb865b94e71e708dea869eccb69c3f80030.tar.gz external_llvm-81b28cb865b94e71e708dea869eccb69c3f80030.tar.bz2 |
Patches for building llvm on Solaris x86. Contributed by Nathan Keynes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51775 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 74eedd3..35811b4 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/^ *U //' | sort | uniq |"; + "$nmPath -g -u $Directory/$lib | sed -e 's/^[ 0]* U //' | sort | uniq |"; my %DepLibs; while (<UNDEFS>) { chomp; |