[llvm-commits] [llvm] r47723 - /llvm/trunk/Makefile
Gabor Greif
ggreif at gmail.com
Thu Feb 28 10:46:56 PST 2008
Author: ggreif
Date: Thu Feb 28 12:46:56 2008
New Revision: 47723
URL: http://llvm.org/viewvc/llvm-project?rev=47723&view=rev
Log:
Run 'svn info' in the C locale. Also appropriately escape spaces and ? for gawk in darwin.
Modified:
llvm/trunk/Makefile
Modified: llvm/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile?rev=47723&r1=47722&r2=47723&view=diff
==============================================================================
--- llvm/trunk/Makefile (original)
+++ llvm/trunk/Makefile Thu Feb 28 12:46:56 2008
@@ -145,9 +145,9 @@
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
More information about the llvm-commits
mailing list