Prevent the ramdisk makefile from failing if the last image is not ELF
This commit is contained in:
parent
5c0927e108
commit
4bee3cff2e
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue