Welcome to mirror list, hosted at ThFree Co, Russian Federation.

adjust-makefiles.sh « Mono.Profiler - github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 313b42a461d3e967cde17a4fbac52ea3b9917e69 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
sed -i -e 's/EXTRA_DIST =  expansions.m4//' Makefile.am
for F in ./*/mprof-*.in; do
sed -i -e 's/@expanded_libdir@/@prefix@\/lib/' $F
done
for F in ./*/Makefile.am; do
sed -i -e 's/include $(top_srcdir)\/Makefile.include/include $(top_srcdir)\/Mono.Profiler\/Makefile.include/' $F;
sed -i -e 's/GTK_SHARP_20_LIBS/GTK_SHARP_LIBS/' $F;
done
rm autogen.sh configure.ac expansions.m4;