This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB 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]

FYI: fix PR build/9098


I'm checking this in on the trunk and the 7.6 branch.

SHELL should be defined to @SHELL@, but in gdbserver it is not.
See (info "(autoconf) The Make Macro SHELL.")

This patch to fix it was in bugzilla.
It is small enough not to need paperwork.

Tom

2013-03-15  Tony Theodore  <tonyt@logyst.com>

	PR build/9098:
	* Makefile.in (SHELL): Use @SHELL@.

Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/gdbserver/Makefile.in,v
retrieving revision 1.144
diff -u -r1.144 Makefile.in
--- Makefile.in	11 Mar 2013 08:24:07 -0000	1.144
+++ Makefile.in	15 Mar 2013 17:28:42 -0000
@@ -41,7 +41,7 @@
 htmldir = $(prefix)/html
 includedir = @includedir@
 
-SHELL = /bin/sh
+SHELL = @SHELL@
 EXEEXT = @EXEEXT@
 
 INSTALL = @INSTALL@


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