source: valtobtest/subversion-1.6.2/tools/dev/prebuild-cleanup.sh @ 3

Last change on this file since 3 was 3, checked in by valtob, 15 years ago

subversion source 1.6.2 as test

  • Property svn:executable set to *
File size: 644 bytes
Line 
1#!/bin/sh
2
3### Purify a system, to simulate building Subversion on a "clean" box.
4###
5### You'll probably need to run this as `root', and may need to change
6### some paths for your system.
7
8# Clean out old apr, apr-util config scripts.
9rm /usr/local/bin/apr-config
10rm /usr/local/bin/apu-config
11
12# Clean out libs.
13rm -f /usr/local/lib/APRVARS
14rm -f /usr/local/lib/libapr*
15rm -f /usr/local/lib/libexpat*
16rm -f /usr/local/lib/libneon*
17rm -f /usr/local/lib/libsvn*
18
19# Clean out headers.
20rm -f /usr/local/include/apr*
21rm -f /usr/local/include/svn*
22rm -f /usr/local/include/neon/*
23
24### Not sure this would be useful:
25# rm -f /usr/local/apache2/lib/*
Note: See TracBrowser for help on using the repository browser.