From 5100672fda3cf801c880a2a1d5b63eee1b626c4e Mon Sep 17 00:00:00 2001 From: Hiroki Sato Date: Thu, 17 May 2012 22:03:40 +0000 Subject: [PATCH] - Fix make clean to remove the output directory itself in addition to the files.[*] - Use mkdir -p. Submitted by: gjb [1] Approved by: doceng (implicit) --- en_US.ISO8859-1/htdocs/multimedia/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en_US.ISO8859-1/htdocs/multimedia/Makefile b/en_US.ISO8859-1/htdocs/multimedia/Makefile index 15fc00d63c..44dd54808e 100644 --- a/en_US.ISO8859-1/htdocs/multimedia/Makefile +++ b/en_US.ISO8859-1/htdocs/multimedia/Makefile @@ -26,10 +26,10 @@ TEMPLATES= multimedia.sgml.intro \ multimedia-input.xml clean: - -${RM} output/* + ${RM} -rf output build: - (test -d output || ${MKDIR} output ) && \ + ${MKDIR} -p output && \ cd output && \ ${LN} -fs ../Makefile.output Makefile && \ ( for f in ${TEMPLATES}; do ${LN} -fs ../$$f $$f; done ) && \