From ae6c1dbd6abb7cd6c3d5a5ea4614136129cb2765 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Fri, 29 Jan 2021 01:16:23 +0700 Subject: [PATCH] make: Use builtin macro $(RM) rather than /bin/rm. (#311) --- bin/makefile-tail | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/makefile-tail b/bin/makefile-tail index d1e71e3..977095e 100644 --- a/bin/makefile-tail +++ b/bin/makefile-tail @@ -179,7 +179,7 @@ $(OSARCHDIR)setsout: $(OBJECTDIR)setsout.o $(REQUIRED-INCS) #### Component files ###################################################### $(OBJECTDIR)vdate.o: $(LIBFILES) $(EXTFILES) $(OSARCHDIR)mkvdate - /bin/rm -f $(OBJECTDIR)vdate.c + $(RM) $(OBJECTDIR)vdate.c $(OSARCHDIR)mkvdate > $(OBJECTDIR)vdate.c $(CC) $(RFLAGS) $(OBJECTDIR)vdate.c -o $(OBJECTDIR)vdate$(OEXT)