| 123456789101112131415161718192021222324252627282930313233343536373839 |
- Crual hack to get Mono packaged, at least partly. As of Mono 0.91, the
- "make install" fails in runtime/net_*/ dirs with the error "Unhandled
- Exception: System.DllNotFoundException: libc". The following patch just
- skips this install step -- as a side-effect some essential parts of the
- package might be missing.
- Index: runtime/net_1_1/Makefile.in
- --- runtime/net_1_1/Makefile.in.orig 2004-05-04 23:51:12.000000000 +0200
- +++ runtime/net_1_1/Makefile.in 2004-05-07 11:36:45.000000000 +0200
- @@ -354,12 +354,6 @@
- all-local: $(gac_assemblies)
-
- install-data-local:
- - @if test -n '$(gac_assemblies)'; then \
- - for i in ''$(gac_assemblies); do \
- - echo "MONO_PATH=$(srcdir) $(mono_runtime) --config ../../data/config $(gacutil) /i $(srcdir)/$$i /f /package 1.0 /root $(DESTDIR)$(libdir)" ; \
- - MONO_PATH=$(srcdir) \
- - $(LIBTOOL) --mode=execute $(mono_runtime) --config ../../data/config $(gacutil) /i $(srcdir)/$$i /f /package 1.0 /root $(DESTDIR)$(libdir) || exit 1 ; \
- - done; fi
-
- uninstall-local:
- @if test -n '$(gac_assemblies_list)'; then \
- Index: runtime/net_2_0/Makefile.in
- --- runtime/net_2_0/Makefile.in.orig 2004-05-04 23:51:13.000000000 +0200
- +++ runtime/net_2_0/Makefile.in 2004-05-07 11:36:56.000000000 +0200
- @@ -355,12 +355,6 @@
- all-local: $(gac_assemblies)
-
- install-data-local:
- - @if test -n '$(gac_assemblies)'; then \
- - for i in ''$(gac_assemblies); do \
- - echo "MONO_PATH=$(srcdir)/../net_1_1 $(mono_runtime) --config ../../data/config $(gacutil) /i $(srcdir)/$$i /f /package 2.0 /root $(DESTDIR)$(libdir)" ; \
- - MONO_PATH=$(srcdir)/../net_1_1 \
- - $(LIBTOOL) --mode=execute $(mono_runtime) --config ../../data/config $(gacutil) /i $(srcdir)/$$i /f /package 2.0 /root $(DESTDIR)$(libdir) || exit 1 ; \
- - done; fi
-
- uninstall-local:
- @if test -n '$(gac_assemblies_list)'; then \
|