This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[committed] Remove trailing space from libobjc/Makefile.in


A trailing space in libobjc/Makefile.in meant that $(toolexeclibdir)
could expand to two arguments, ".../<target>" and "/lib".

Patch tested on mipsisa64-elf.  Installed as obvious.

Richard


Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/libobjc/Makefile.in,v
retrieving revision 1.36
diff -u -p -F^\([(a-zA-Z0-9_]\|#define\) -r1.36 Makefile.in
--- Makefile.in	14 Apr 2004 20:08:01 -0000	1.36
+++ Makefile.in	9 May 2004 20:23:01 -0000
@@ -36,7 +36,7 @@ target_noncanonical = @target_noncanonic
 gcc_version = @gcc_version@
 top_srcdir = @top_srcdir@
 toplevel_srcdir = @toplevel_srcdir@
-toolexecdir = @toolexecdir@ 
+toolexecdir = @toolexecdir@
 # Toolexecdir is used only by toolexeclibdir
 toolexeclibdir = @toolexeclibdir@
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]