summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2012-08-14 18:33:50 +0000
committerDavid Blaikie <dblaikie@gmail.com>2012-08-14 18:33:50 +0000
commitf6933e6a18e8b36aff63f0c15ddc627f8a610525 (patch)
tree156108ccbe6117335c23d2631004a1128f7a46f0 /Makefile
parent7126ee00ab4812c3b732a195e687daf6e142a9f4 (diff)
downloadllvm-f6933e6a18e8b36aff63f0c15ddc627f8a610525.tar.gz
llvm-f6933e6a18e8b36aff63f0c15ddc627f8a610525.tar.bz2
llvm-f6933e6a18e8b36aff63f0c15ddc627f8a610525.tar.xz
Fix the make update target to work even when sub repo repositories are ignored.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161883 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ec24862ad6..604696a1df 100644
--- a/Makefile
+++ b/Makefile
@@ -244,13 +244,13 @@ build-for-llvm-top:
SVN = svn
SVN-UPDATE-OPTIONS =
AWK = awk
-SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}' \
+SUB-SVN-DIRS = $(AWK) '/I|\? / {print $$2}' \
| LC_ALL=C xargs $(SVN) info 2>/dev/null \
| $(AWK) '/^Path:\ / {print $$2}'
update:
$(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
- @ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
+ @ $(SVN) status --no-ignore $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
happiness: update all check-all