src/Makefile.inc: Make the shell always error out.

svn path=/dists/trunk/linux-kbuild-2.6/; revision=11985
This commit is contained in:
Bastian Blank 2008-08-09 13:31:41 +00:00
parent 0ff386a98c
commit ca6833b55f
1 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
SHELL = /bin/sh -e
CC = gcc
CXX = g++
CFLAGS += -Wall -O2
@ -7,7 +9,7 @@ all: all-local all-recursive
install: install-local install-recursive
all-recursive install-recursive:
@target=`echo $@ | sed s/-recursive//`; \
@target=$(echo $@ | sed s/-recursive//); \
list='$(SUBDIRS)'; \
for subdir in $$list; do \
echo "Making $$target in $$subdir"; \