From 594ca0966e8fd5992ebf95170cc42e19c698fec6 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 22 Nov 2005 02:11:00 +0000 Subject: [PATCH] Bug #5118: Use "rm -f" instead of "$(RM)", which isn't always defined. --- ChangeLog | 5 +++++ hw/xfree86/utils/ioport/Makefile.am | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ed9829ce7..3f56381fe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-11-21 Eric Anholt + + * hw/xfree86/utils/ioport/Makefile.am: + Bug #5118: Use "rm -f" instead of "$(RM)", which isn't always defined. + 2005-11-20 Felix Kuehling * configure.ac: 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