https://github.com/cran/XML
Revision 8c291ae0a3cc6b99d3bfe5e1f15e3902dc227781 authored by Duncan Temple Lang on 04 April 2006, 00:00:00 UTC, committed by Gabor Csardi on 04 April 2006, 00:00:00 UTC
1 parent 26bfd79
Raw File
Tip revision: 8c291ae0a3cc6b99d3bfe5e1f15e3902dc227781 authored by Duncan Temple Lang on 04 April 2006, 00:00:00 UTC
version 0.99-7
Tip revision: 8c291ae
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