]> git.pld-linux.org Git - projects/cleanbuild.git/blob - cleanup-la
use tmpfs=0 to disable tmpfs
[projects/cleanbuild.git] / cleanup-la
1 #!/bin/sh
2 root=$1
3 find $root/usr/lib{,64} -name "*.la" -print0 | xargs -0 -r sed -i -e "s@dependency_libs=.*@dependency_libs=' '@"
4
5 # it's important this script does not fail if no matches found
6 exit 0
This page took 0.073142 seconds and 3 git commands to generate.