qemu-trivial.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-trivial] [PATCH] po/Makefile: call rm -f directly
@ 2016-03-20  1:58 Jan Vesely
  2016-04-29  4:28 ` Jan Vesely
  2016-05-29  7:27 ` Michael Tokarev
  0 siblings, 2 replies; 3+ messages in thread
From: Jan Vesely @ 2016-03-20  1:58 UTC (permalink / raw)
  To: qemu-trivial

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 <jano.vesely@gmail.com>
---
 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.3



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-05-29  7:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-20  1:58 [Qemu-trivial] [PATCH] po/Makefile: call rm -f directly Jan Vesely
2016-04-29  4:28 ` Jan Vesely
2016-05-29  7:27 ` Michael Tokarev

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).