diff options
author | David Blaikie <dblaikie@gmail.com> | 2012-08-14 18:33:50 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2012-08-14 18:33:50 +0000 |
commit | f6933e6a18e8b36aff63f0c15ddc627f8a610525 (patch) | |
tree | 156108ccbe6117335c23d2631004a1128f7a46f0 /Makefile | |
parent | 7126ee00ab4812c3b732a195e687daf6e142a9f4 (diff) | |
download | external_llvm-f6933e6a18e8b36aff63f0c15ddc627f8a610525.zip external_llvm-f6933e6a18e8b36aff63f0c15ddc627f8a610525.tar.gz external_llvm-f6933e6a18e8b36aff63f0c15ddc627f8a610525.tar.bz2 |
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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |