From 594ca0966e8fd5992ebf95170cc42e19c698fec6 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 22 Nov 2005 02:11:00 +0000 Subject: Bug #5118: Use "rm -f" instead of "$(RM)", which isn't always defined. --- hw/xfree86/utils/ioport/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hw/xfree86/utils') diff --git a/hw/xfree86/utils/ioport/Makefile.am b/hw/xfree86/utils/ioport/Makefile.am index 4577fdacd..23f756917 100644 --- a/hw/xfree86/utils/ioport/Makefile.am +++ b/hw/xfree86/utils/ioport/Makefile.am @@ -45,12 +45,12 @@ ioport_PROGRAM_LINKS = inb inw inl outb outw outl all-local: @for i in $(ioport_PROGRAM_LINKS); do (set -x; \ - $(RM) $$i; $(LN_S) ioport $$i); \ + rm -f $$i; $(LN_S) ioport $$i); \ done install-exec-hook: @for i in $(ioport_PROGRAM_LINKS); do (set -x; \ - $(RM) $(DESTDIR)$(bindir)/$$i; \ + rm -f $(DESTDIR)$(bindir)/$$i; \ (cd $(DESTDIR)$(bindir); $(LN_S) ioport $$i)); \ done -- cgit v1.2.3