diff options
author | elupus <elupus@xbmc.org> | 2011-07-24 20:34:48 +0200 |
---|---|---|
committer | elupus <elupus@xbmc.org> | 2011-07-24 20:35:13 +0200 |
commit | 1f28471d82790373142af0486837bf4099c1d234 (patch) | |
tree | 0c2417b592bf052f560bc0a5c8b3960c6f47de3d | |
parent | d850925795b47c047ab8c94e17b8da3e01558255 (diff) |
fixed: on compile failure we must still error code so make aborts
-rw-r--r-- | Makefile.include.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.include.in b/Makefile.include.in index 04fcbf8574..c351bdcf33 100644 --- a/Makefile.include.in +++ b/Makefile.include.in @@ -79,7 +79,7 @@ GEN_DEPS=\ && sed -e 's/\#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \ -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P \ && rm -f $*.d \ - || rm -f $*.P $@ + || ( rm -f $*.P $@ && exit 1 ) %.o: %.cpp @rm -f $@ |