File: cleanup

package info (click to toggle)
r-cran-rgdal 1.5-21%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,896 kB
  • sloc: cpp: 5,806; ansic: 688; sh: 23; makefile: 6
file content (12 lines) | stat: -rwxr-xr-x 166 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
for f in ./config.*; do
    rm -f $f
done
if [ -e confdefs.h ]; then
    rm -f confdefs.h
fi
if [ -e src/Makevars ]; then
    rm -f src/Makevars
fi

exit 0