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

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMassimiliano Mantione <massi@mono-cvs.ximian.com>2008-08-12 16:40:26 +0400
committerMassimiliano Mantione <massi@mono-cvs.ximian.com>2008-08-12 16:40:26 +0400
commit40bf3dff314c25a2c01cdd3ff98622ae52dbf34c (patch)
treed8781198928f68c0c0215f22107109e07ac49652 /Mono.Profiler
parent2fc52e2a4f48cea31f1b9eee0b7d867214ec440c (diff)
More fixes for the Mono.Profiler integration.
svn path=/trunk/mono-tools/; revision=110224
Diffstat (limited to 'Mono.Profiler')
-rw-r--r--Mono.Profiler/Makefile.am2
-rwxr-xr-xMono.Profiler/adjust-makefiles.sh10
2 files changed, 8 insertions, 4 deletions
diff --git a/Mono.Profiler/Makefile.am b/Mono.Profiler/Makefile.am
index 681437ec..5894bcbe 100644
--- a/Mono.Profiler/Makefile.am
+++ b/Mono.Profiler/Makefile.am
@@ -1,5 +1,5 @@
-EXTRA_DIST = expansions.m4
+
#Warning: This is an automatically generated file, do not edit!
if ENABLE_DEBUG
diff --git a/Mono.Profiler/adjust-makefiles.sh b/Mono.Profiler/adjust-makefiles.sh
index 81bdca0d..7389e2b7 100755
--- a/Mono.Profiler/adjust-makefiles.sh
+++ b/Mono.Profiler/adjust-makefiles.sh
@@ -1,6 +1,10 @@
#!/bin/bash
-for MF in ./*/Makefile.am; do
-sed -i -e 's/include $(top_srcdir)\/Makefile.include/include $(top_srcdir)\/Mono.Profiler\/Makefile.include/' $MF;
-sed -i -e 's/GTK_SHARP_20_LIBS/GTK_SHARP_LIBS/' $MF;
+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;