From: Guido van Rossum Date: Fri, 15 Aug 1997 19:12:08 +0000 (+0000) Subject: Tweaked all l2h targets to remove the target directory before renaming X-Git-Tag: v1.5a3~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b235d9e673cf81464c7efddda1868fbb4b319322;p=thirdparty%2FPython%2Fcpython.git Tweaked all l2h targets to remove the target directory before renaming the intermediate target directory. --- diff --git a/Doc/Makefile b/Doc/Makefile index 58bb93efb432..01bed3b21dfb 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -182,8 +182,9 @@ l2hext: ext.dvi myformat.perl @rm -rf python-ext sed 's/^

,/

/' \ ext/xxx - ln -s ext.html ext/index.html mv ext/xxx ext/ext.html + ln -s ext.html ext/index.html + @rm -rf python-ext mv ext python-ext l2hlib: lib.dvi myformat.perl @@ -202,8 +203,9 @@ l2hapi: api.dvi myformat.perl @rm -rf python-api sed 's/^

,/

/' \ api/xxx - ln -s api.html api/index.html mv api/xxx api/api.html + ln -s api.html api/index.html + @rm -rf python-api mv api python-api