From: Ben Laurie Date: Sun, 31 Dec 2000 11:35:50 +0000 (+0000) Subject: RM was not defined. Just use rm instead. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6da59e144e28d22a59050a5fc8c9b69bf8b93476;p=apache RM was not defined. Just use rm instead. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87559 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/Makefile.in b/server/Makefile.in index 1c20a6c733..8e8180f433 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -44,8 +44,8 @@ delete-exports: headers="`find ../include/*.h -newer $(TARGET_EXPORTS)`" ; \ if test -n "$$headers"; then \ echo Found newer headers. Will rebuild $(TARGET_EXPORTS). ; \ - echo $(RM) -f $(TARGET_EXPORTS) ; \ - $(RM) -f $(TARGET_EXPORTS) ; \ + echo rm -f $(TARGET_EXPORTS) ; \ + rm -f $(TARGET_EXPORTS) ; \ fi \ fi