Skip to content

Commit

Permalink
Don't fail "make clean" when some files are missing
Browse files Browse the repository at this point in the history
It appears that some of the files listed in "make clean" don't
actually get created when I run "make".  This patch simply papers over
the issue by running "rm -f" instead of "rm", which doesn't fail on
missing files.
  • Loading branch information
palmer-dabbelt authored and hansendc committed Mar 14, 2015
1 parent e7142e6 commit 610e317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ eyefi-config: $(OBJS)
$(CC) $(CFLAGS) $(OBJS) -o $@

clean:
rm eyefi-config core $(OBJS) cscope*
rm -f eyefi-config core $(OBJS) cscope*

eyefi-chdk.o: eyefi-config.h
eyefi-config.o: eyefi-config.h
Expand Down

0 comments on commit 610e317

Please sign in to comment.