https://github.com/cran/XML
Raw File
Tip revision: 3cc154f91cacaa5bc05a347c841f07984b5a28a6 authored by CRAN Team on 22 January 2024, 13:30:59 UTC
version 3.99-0.16.1
Tip revision: 3cc154f
cleanup
#!/bin/sh

# This cleans up after the auxillary files that were created when installing
# the XML package. The R INSTALL command takes care of the others.
#
# This is a slightly modified version of Torsten Hothorn's original contribution
# to work using the Bourne shell and for non-GNU versions of test.
 

echo "  Cleaning up after installing the XML package"

for f in config.log config.status config.cache ; do
  if test -w $f ; then
    rm -f $f
  fi
done

for f in src/Makevars R/supports.R inst/scripts/RSXML.csh inst/scripts/RSXML.bsh src/Makevars ; do
 if test -w $f ; then
      rm -f $f
 fi
done


exit 0   
back to top