]> git.proxmox.com Git - mirror_qemu.git/commitdiff
po/Makefile: call rm -f directly
authorJan Vesely <jano.vesely@gmail.com>
Sun, 20 Mar 2016 01:58:54 +0000 (21:58 -0400)
committerMichael Tokarev <mjt@tls.msk.ru>
Tue, 7 Jun 2016 15:02:49 +0000 (18:02 +0300)
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>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
po/Makefile

index b271f79ba2aa9711822be9ddf7b603b9e1f126c3..7bab09dce2cbc4d3ff2ea5bdbdf76daa5b22e46a 100644 (file)
@@ -32,7 +32,7 @@ update: $(SRCS)
 build: $(OBJS)
 
 clean:
-       $(RM) $(OBJS)
+       rm -f $(OBJS)
 
 install: $(OBJS)
        for obj in $(OBJS); do \