Added -f to rm

SVN revision: 1357
This commit is contained in:
Stefan Ritt 2005-05-10 06:32:31 +00:00
parent de7538f3b9
commit b4d26d144c

View File

@ -23,14 +23,14 @@ MANDIR = /usr/local/man
MXMLDIR = ../mxml MXMLDIR = ../mxml
INSTALL = /usr/bin/install INSTALL = /usr/bin/install
RM = /bin/rm RM = /bin/rm -f
ifeq ($(OSTYPE),solaris) ifeq ($(OSTYPE),solaris)
CC = gcc CC = gcc
LIBS += -lsocket -lnsl LIBS += -lsocket -lnsl
CFLAGS = CFLAGS =
INSTALL = /usr/ucb/install INSTALL = /usr/ucb/install
RM = /usr/bin/rm RM = /usr/bin/rm -f
endif endif
ifeq ($(OSTYPE),darwin) ifeq ($(OSTYPE),darwin)