]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
check_makefile_deps.sh: Look for c-common.o in c-family/.
authorSteven Bosscher <steven@gcc.gnu.org>
Tue, 19 Jun 2012 20:01:23 +0000 (20:01 +0000)
committerSteven Bosscher <steven@gcc.gnu.org>
Tue, 19 Jun 2012 20:01:23 +0000 (20:01 +0000)
* 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

contrib/ChangeLog
contrib/check_makefile_deps.sh

index 8c21a8a6bad6624d754bed48cae30bd6944dd197..f0e0e4217763ed65fffa66dcad25592c87a7b193 100644 (file)
@@ -1,3 +1,8 @@
+2012-06-19  Steven Bosscher  <steven@gcc.gnu.org>
+
+       * 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.
+
 2012-05-31  Marek Polacek  <polacek@redhat.com>
 
        * mklog: Prevent printing three spaces after the date.
index 60b9c1757fd7241d593fc351dc3c0bf1768caee0..74dde333d95f6e0a8f00de0ad9cc5a31bf8ec290 100644 (file)
@@ -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