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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@hurrynot.org>2005-03-24 07:29:38 +0300
committerRaja R Harinath <harinath@hurrynot.org>2005-03-24 07:29:38 +0300
commit8da01d1db921e18072225ccb4f6b0bcbee7ffd1c (patch)
tree54688215eb894cc1749880d3ef25faef7a28e984 /runtime
parentfae0ff0ca81573e1d4e60cb4b598ca965ca26dc0 (diff)
* configure.in (libgdiplus): Make more intuitive.
* runtime/Makefile.am (wrapper-config): Update to change. svn path=/trunk/mono/; revision=42184
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index 1b922fea829..ca2624f99d7 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -103,9 +103,9 @@ CLEANFILES = wrapper-config
wrapper-config: ../data/config Makefile
d=`cd ../support && pwd`; \
sed 's,target="libMonoPosixHelper[^"]*",target="'$$d/libMonoPosixHelper.la'",' ../data/config > $@
- if test -z "$(libgdiplus_topdir)"; then :; else \
+ if test -z "$(libgdiplus_loc)"; then :; else \
mv $@ $@t; \
- sed 's,<configuration>,& <dllmap dll="gdiplus.dll" target="'"$(libgdiplus_topdir)/src/libgdiplus.la"'" />,' $@t > $@; \
+ sed 's,<configuration>,& <dllmap dll="gdiplus.dll" target="$(libgdiplus_loc)" />,' $@t > $@; \
rm -f $@t; \
fi