diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-11-20 05:00:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-11-20 05:00:09 +0000 |
commit | 6a369f972afd1add899318b0d0d9d2b2877778e0 (patch) | |
tree | b5fa302196993e4cec2960da4d4934cb034156bc /gnu/usr.bin | |
parent | 699ecd53106e86c218e669b25a999c7366b1fb2b (diff) |
use ${SHELL} to run scripts in the src tree
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/binutils/gdb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/binutils/gdb/Makefile.in b/gnu/usr.bin/binutils/gdb/Makefile.in index b105b4080e9..6c20f4c4755 100644 --- a/gnu/usr.bin/binutils/gdb/Makefile.in +++ b/gnu/usr.bin/binutils/gdb/Makefile.in @@ -1322,10 +1322,10 @@ version.c: Makefile version.in version.o: version.c $(version_h) observer.h: observer.sh doc/observer.texi - ${srcdir}/observer.sh h ${srcdir}/doc/observer.texi observer.h + ${SHELL} ${srcdir}/observer.sh h ${srcdir}/doc/observer.texi observer.h observer.inc: observer.sh doc/observer.texi - ${srcdir}/observer.sh inc ${srcdir}/doc/observer.texi observer.inc + ${SHELL} ${srcdir}/observer.sh inc ${srcdir}/doc/observer.texi observer.inc lint: $(LINTFILES) $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \ |