diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2010-05-24 21:28:27 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2010-05-24 21:28:27 (GMT) |
commit | 2985854c96ec08ff15c399ec1f8f1f35b4dd24ac (patch) | |
tree | 82bdfe208da80868a98ed179779c8318bc53bf14 /src/gdb-1-fix-shell.patch | |
parent | 0e51923b993a3290fda7477d97bf51109577187d (diff) | |
download | mxe-2985854c96ec08ff15c399ec1f8f1f35b4dd24ac.zip mxe-2985854c96ec08ff15c399ec1f8f1f35b4dd24ac.tar.gz mxe-2985854c96ec08ff15c399ec1f8f1f35b4dd24ac.tar.bz2 |
don't use the hard-coded /bin/sh shell in package gdb (by Tony Theodore)
Diffstat (limited to 'src/gdb-1-fix-shell.patch')
-rw-r--r-- | src/gdb-1-fix-shell.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/gdb-1-fix-shell.patch b/src/gdb-1-fix-shell.patch new file mode 100644 index 0000000..38fc8bb --- /dev/null +++ b/src/gdb-1-fix-shell.patch @@ -0,0 +1,17 @@ +This file is part of mingw-cross-env. +See doc/index.html for further information. + +This patch has been taken from: +http://sourceware.org/bugzilla/show_bug.cgi?id=9098 + +--- a/gdb/gdbserver/Makefile.in 2010-01-05 02:03:00.000000000 +1100 ++++ b/gdb/gdbserver/Makefile.in 2010-05-21 23:49:45.960860228 +1000 +@@ -43,7 +43,7 @@ + htmldir = $(prefix)/html + includedir = @includedir@ + +-SHELL = /bin/sh ++SHELL = @SHELL@ + EXEEXT = @EXEEXT@ + + INSTALL = @INSTALL@ |