diff options
author | Chris Lattner <sabre@nondot.org> | 2002-09-06 21:04:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-09-06 21:04:36 +0000 |
commit | 82f2f954fd5939dd906a48beaf56f625c4fbc8db (patch) | |
tree | 5ca45cefb52a1abc0b5201424498b74dadbc4e22 /utils/getsrcs.sh | |
parent | b0d7e626a98437d8379dc7d1fc61a5b815fd51a9 (diff) |
Fix script due to new www/ top level directory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3603 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/getsrcs.sh')
-rwxr-xr-x | utils/getsrcs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/getsrcs.sh b/utils/getsrcs.sh index ad755ceee3..60cdcf644c 100755 --- a/utils/getsrcs.sh +++ b/utils/getsrcs.sh @@ -1,5 +1,5 @@ #!/bin/sh # This is useful because it prints out all of the source files. Useful for # greps. -find docs include lib tools -name \*.\[cdhyl\]\* | grep -v Lexer.cpp | grep -v llvmAsmParser.cpp | grep -v llvmAsmParser.h | grep -v '~$' | grep -v '\.ll$' | grep -v .flc | grep -v Sparc.burm.c | grep -v '\.d$' | grep -v '\.dir$' | grep -v docs/doxygen | grep -v include/boost +find www include lib tools -name \*.\[cdhyl\]\* | grep -v Lexer.cpp | grep -v llvmAsmParser.cpp | grep -v llvmAsmParser.h | grep -v '~$' | grep -v '\.ll$' | grep -v .flc | grep -v Sparc.burm.c | grep -v '\.d$' | grep -v '\.dir$' | grep -v www/docs/doxygen | grep -v include/boost |