From: Gene Cumm Date: Sun, 8 Sep 2013 23:05:30 +0000 (-0400) Subject: diag/geodsp: fix Makefile X-Git-Tag: syslinux-6.03~86^2~2^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a561eb2b62e5f6bfd764738523774e8a69ed3d26;p=platform%2Fupstream%2Fsyslinux.git diag/geodsp: fix Makefile Results in null image Reported-By: ioannis Signed-off-by: Gene Cumm --- diff --git a/diag/geodsp/Makefile b/diag/geodsp/Makefile index 5516085..f97a1bd 100644 --- a/diag/geodsp/Makefile +++ b/diag/geodsp/Makefile @@ -34,14 +34,14 @@ all: $(BTARGET) # Higher compression levels result in larger files %.img.xz: %.bin mk-lba-img.pl - $(PERL) mk-lba-img $< | $(XZ) -0 > $@ || ( rm -f $@ ; false ) + $(PERL) mk-lba-img.pl $< | $(XZ) -0 > $@ || ( rm -f $@ ; false ) %.img.gz: %.bin mk-lba-img.pl - $(PERL) mk-lba-img $< | $(GZIPPROG) -9 > $@ || ( rm -f $@ ; false ) + $(PERL) mk-lba-img.pl $< | $(GZIPPROG) -9 > $@ || ( rm -f $@ ; false ) # in case someone really wants these without needing a decompressor %.img: %.bin mk-lba-img.pl - $(PERL) mk-lba-img $< > $@ || ( rm -f $@ ; false ) + $(PERL) mk-lba-img.pl $< > $@ || ( rm -f $@ ; false ) %.bin: %.asm $(coredir)/writehex.inc $(coredir)/macros.inc $(coredir)/diskboot.inc $(NASM) $(NASMOPT) -o $@ -l $(@:.bin=.lst) $<