diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2012-06-19 20:01:23 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2012-06-19 20:01:23 +0000 |
commit | c85fd25b17ae5b2150c71826b04ffb71045d1b28 (patch) | |
tree | 378907a8e75c8f6f1ef952ad6d8a93e17d2944bc /contrib/check_makefile_deps.sh | |
parent | a8781821e0f8f7ce6b89160bf3b2a0f2c1ee4350 (diff) | |
download | gcc-c85fd25b17ae5b2150c71826b04ffb71045d1b28.tar.gz |
check_makefile_deps.sh: Look for c-common.o in c-family/.
* check_makefile_deps.sh: Look for c-common.o in c-family/.
Add a few more crt* files to the list of files to skip.
From-SVN: r188792
Diffstat (limited to 'contrib/check_makefile_deps.sh')
-rw-r--r-- | contrib/check_makefile_deps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/check_makefile_deps.sh b/contrib/check_makefile_deps.sh index 60b9c1757fd..74dde333d95 100644 --- a/contrib/check_makefile_deps.sh +++ b/contrib/check_makefile_deps.sh @@ -19,7 +19,7 @@ start_after= # Skip some objects unconditionally; make sure each name in this list is # surrounded by spaces. -skip=" crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o crtfastmath.o crtprec64.o crtprec80.o crtprec32.o " +skip=" crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o crtfastmath.o crtprec64.o crtprec80.o crtprec32.o ecrti.o ecrtn.o ncrti.o ncrtn.o " # Files which show up as dependencies other than through unconditional #include. # This is an egrep pattern. @@ -34,7 +34,7 @@ hidden_dep_files='(BASE-VER|DATESTAMP|DEV-PHASE|Makefile|xcoffout\.h|basic-block set -e st=0 -if test -f c-common.o; then :; else +if test -f c-family/c-common.o; then :; else echo "$0: rerun in an up to date build-tree/gcc directory" >&2 exit 1 fi |