blob: 19e68d72985b5fc9ff29c4d6d3d9bc84f5c7d1e5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# Look for all path containing binaries for local execution
# source tools/maint/libpath.inc
LD_LIBRARY_PATH="$PWD/src/.libs:$LD_LIBRARY_PATH"
find . -type d -name schemas -exec glib-compile-schemas {} \;
export LD_LIBRARY_PATH=$( find plugins/ -maxdepth 2 -type d -name '.libs' -printf "$PWD/plugins/%P:" | sed 's/:$//' ):"$LD_LIBRARY_PATH"
|