Only run xattr if present

This commit is contained in:
Joshua Bell 2021-03-07 16:05:55 -08:00
parent e6943cb0b2
commit a646cf6611
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ $(OUTDIR)/%.o: %.s $(HEADERS)
$(OUTDIR)/%.BIN $(OUTDIR)/%.SYS: $(OUTDIR)/%.o
ld65 $(LDFLAGS) -o $@ $<
command -v xattr &> /dev/null && xattr -wx prodos.AuxType '00 20' $@
if command -v xattr &> /dev/null; then xattr -wx prodos.AuxType '00 20' $@; fi
$(OUTDIR)/%.CMD: $(OUTDIR)/%.cmd.o
ld65 $(LDFLAGS) -o $@ $<