# HG changeset patch # User gabucino # Date 1068150767 0 # Node ID c17fc395142a9a137ea71142594fe7c6bd3e06ca # Parent 0180e49c3b71de9d80730cf5b7da6387ddcd038b now distclean will run on systems which don't have 'readlink' anyway dunno why it was used in this target diff -r 0180e49c3b71 -r c17fc395142a DOCS/xml/Makefile.inc --- a/DOCS/xml/Makefile.inc Thu Nov 06 10:32:38 2003 +0000 +++ b/DOCS/xml/Makefile.inc Thu Nov 06 20:32:47 2003 +0000 @@ -78,10 +78,6 @@ cd .. && sh configure distclean: - if test "$(USE_SYMLINKS)" = "yes" ; then \ - for file in *.xml ; do \ - if test -L $$file && test "`readlink $$file`" = "../en/$$file" ; then \ - rm $$file ; \ - fi ; \ - done ; \ + @if test "$(USE_SYMLINKS)" = "yes" ; then \ + rm -f `find *.xml -type l`; \ fi