From: wessels <> Date: Sat, 19 Feb 2005 04:01:00 +0000 (+0000) Subject: $(RM) is not automatically defined on BSD make, so hardcode 'rm X-Git-Tag: SQUID_3_0_PRE4~868 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=09927d893cea1726d9ed2d5ba3de23fe4bf1981d;p=thirdparty%2Fsquid.git $(RM) is not automatically defined on BSD make, so hardcode 'rm -rf' instead --- diff --git a/lib/cppunit-1.10.0/doc/Makefile.am b/lib/cppunit-1.10.0/doc/Makefile.am index 13ec97f187..9fe2a157f6 100644 --- a/lib/cppunit-1.10.0/doc/Makefile.am +++ b/lib/cppunit-1.10.0/doc/Makefile.am @@ -63,5 +63,5 @@ pdf: @PACKAGE@.pdf clean-local: - $(RM) -r latex - $(RM) -r html man @PACKAGE@.ps @PACKAGE@.pdf + rm -rf latex + rm -rf html man @PACKAGE@.ps @PACKAGE@.pdf diff --git a/lib/cppunit-1.10.0/doc/Makefile.in b/lib/cppunit-1.10.0/doc/Makefile.in index ca0b45acf3..c5abc650b3 100644 --- a/lib/cppunit-1.10.0/doc/Makefile.in +++ b/lib/cppunit-1.10.0/doc/Makefile.in @@ -377,8 +377,8 @@ pdf: @PACKAGE@.pdf ln -s ./latex/refman.pdf @PACKAGE@.pdf clean-local: - $(RM) -r latex - $(RM) -r html man @PACKAGE@.ps @PACKAGE@.pdf + rm -rf latex + rm -rf html man @PACKAGE@.ps @PACKAGE@.pdf # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: