prebuild-cleanup.sh
来自「linux subdivision ying gai ke yi le ba」· Shell 代码 · 共 26 行
SH
26 行
#!/bin/sh
### Purify a system, to simulate building Subversion on a "clean" box.
###
### You'll probably need to run this as `root', and may need to change
### some paths for your system.
# Clean out old apr, apr-util config scripts.
rm /usr/local/bin/apr-config
rm /usr/local/bin/apu-config
# Clean out libs.
rm -f /usr/local/lib/APRVARS
rm -f /usr/local/lib/libapr*
rm -f /usr/local/lib/libexpat*
rm -f /usr/local/lib/libneon*
rm -f /usr/local/lib/libsvn*
# Clean out headers.
rm -f /usr/local/include/apr*
rm -f /usr/local/include/svn*
rm -f /usr/local/include/neon/*
### Not sure this would be useful:
# rm -f /usr/local/apache2/lib/*
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?