X-Authentication-Warning: delorie.com: mail set sender to djgpp-workers-bounces using -f From: Andris Pavenis To: gcc-patches AT gcc DOT gnu DOT org Subject: [PATCH] Add missing $(exeext) in dependency of target stmp-fixinc Date: Tue, 23 Nov 2004 17:35:01 +0200 User-Agent: KMail/1.7.1 Cc: djgpp-workers AT delorie DOT com MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200411231735.01117.pavenis@latnet.lv> X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on katosiko.hut.fi X-TKK-Virus-Scanned: by amavisd-new-2.1.2-hutcc at katosiko.hut.fi Reply-To: djgpp-workers AT delorie DOT com This patch adds missing $(exeext) to ../$(build_subdir)/fixincludes/fixincl for target stmp-fixinc. Absence of $(exeext) broke bootstrapping for DJGPP. However, as there is no rule how to make ../$(build_subdir)/fixincludes/fixincl$(exeext), so I think the dependency should better either removed or corresponding rule added. 2004-11-21 Andris Pavenis * Makefile.in: add missing $(exeext) to fixincl in dependency of target stmp-fixinc Index: gcc/gcc/Makefile.in =================================================================== RCS file: /cvs/gcc/gcc/gcc/Makefile.in,v retrieving revision 1.1423 diff -p -3 -r1.1423 Makefile.in *** gcc/gcc/Makefile.in 18 Nov 2004 12:55:53 -0000 1.1423 --- gcc/gcc/Makefile.in 23 Nov 2004 15:27:30 -0000 *************** s-macro_list : $(GCC_PASSES) *** 2803,2809 **** # Build fixed copies of system files. stmp-fixinc: gsyslimits.h macro_list \ ! ../$(build_subdir)/fixincludes/fixincl \ ../$(build_subdir)/fixincludes/fixinc.sh @if test ! -d ${SYSTEM_HEADER_DIR}; then \ echo The directory that should contain system headers does not exist: >&2 ; \ --- 2803,2809 ---- # Build fixed copies of system files. stmp-fixinc: gsyslimits.h macro_list \ ! ../$(build_subdir)/fixincludes/fixincl$(exeext) \ ../$(build_subdir)/fixincludes/fixinc.sh @if test ! -d ${SYSTEM_HEADER_DIR}; then \ echo The directory that should contain system headers does not exist: >&2 ; \