diff contrib/check_makefile_deps.sh @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents a06113de4d67
children
line wrap: on
line diff
--- a/contrib/check_makefile_deps.sh	Sun Aug 21 07:07:55 2011 +0900
+++ b/contrib/check_makefile_deps.sh	Fri Oct 27 22:46:09 2017 +0900
@@ -2,7 +2,7 @@
 #
 # Check for accurate dependencies in gcc/Makefile.in.
 #
-# Copyright (C) 2008 Free Software Foundation, Inc.
+# Copyright (C) 2008, 2012 Free Software Foundation, Inc.
 # Written by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
 #
 # This script is Free Software, and it can be copied, distributed and
@@ -19,7 +19,7 @@
 
 # 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 @@
 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