From: Gabor Greif Date: Thu, 28 Feb 2008 18:46:56 +0000 (+0000) Subject: Run 'svn info' in the C locale. Also appropriately escape spaces and ? for gawk in... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a4a0323f634c792fc21ed4ed415f36b6e8cdfa8b;p=oota-llvm.git Run 'svn info' in the C locale. Also appropriately escape spaces and ? for gawk in darwin. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47723 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile b/Makefile index 9bb311e318f..3fc59336f4a 100644 --- a/Makefile +++ b/Makefile @@ -145,9 +145,9 @@ build-for-llvm-top: SVN = svn SVN-UPDATE-OPTIONS = AWK = awk -SUB-SVN-DIRS = $(AWK) '/? / {print $$2}' \ - | xargs $(SVN) info 2>/dev/null \ - | $(AWK) '/Path: / {print $$2}' +SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}' \ + | LANG=C xargs $(SVN) info 2>/dev/null \ + | $(AWK) '/Path:\ / {print $$2}' update: $(SVN) $(SVN-UPDATE-OPTIONS) update