forge gdb to use Bash instead of the potentially buggy /bin/sh in package gdb (by Tony Theodore)

This commit is contained in:
Volker Grabsch 2010-05-26 02:33:59 +02:00
parent 2985854c96
commit faf79ea7e1
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,8 @@ define $(PKG)_BUILD
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)'
--prefix='$(PREFIX)/$(TARGET)' \
CONFIG_SHELL=$(SHELL)
$(MAKE) -C '$(1)' -j '$(JOBS)'
$(MAKE) -C '$(1)/gdb' -j 1 install
endef