Prevent the ramdisk makefile from failing if the last image is not ELF

This commit is contained in:
Erik van der Kouwe 2012-01-27 13:09:26 +01:00
parent 5c0927e108
commit 4bee3cff2e

View file

@ -183,7 +183,7 @@ rs.single: ../../etc/rs.single
install ${STRIPFLAG} ../../etc/$@ $@
proto.gen: $(PROGRAMS) $(SCRIPTS) proto.sh ${PROTO}
for p in $(PROGRAMS); do file $$p | grep -q ELF && strip -s $$p; done
for p in $(PROGRAMS); do file $$p | grep -q ELF && strip -s $$p || true; done
sh -e proto.sh ${PROTO} >proto.gen
.include <minix.service.mk>