From 891f8dcd251e98befee17f2d00baf8b2f54b728d Mon Sep 17 00:00:00 2001 From: Jan Vesely Date: Sat, 19 Mar 2016 21:58:54 -0400 Subject: [PATCH] po/Makefile: call rm -f directly Default variables are undefined in rules.mak and this is what the rest of the build system uses. Fixes make clean in ./po/ Signed-off-by: Jan Vesely Signed-off-by: Michael Tokarev --- po/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/Makefile b/po/Makefile index b271f79..7bab09d 100644 --- a/po/Makefile +++ b/po/Makefile @@ -32,7 +32,7 @@ update: $(SRCS) build: $(OBJS) clean: - $(RM) $(OBJS) + rm -f $(OBJS) install: $(OBJS) for obj in $(OBJS); do \ -- 2.7.4