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:
authorJackson Harper <jackson@novell.com>2004-06-11 19:39:44 +0400
committerJackson Harper <jackson@novell.com>2004-06-11 19:39:44 +0400
commit3162253a338e18e16f2961f1bc27e9c0e70f0e4b (patch)
tree8541f23125865a1e9e530580d09b640f5fba7854 /runtime
parent1b0c6bf2698f37b0523065c903fcf9578b9fc0ad (diff)
* runtime/net_2_0/Makefile.am:
* runtime/net_1_1/Makefile.am: Sign assemblies before installing svn path=/trunk/mono/; revision=29348
Diffstat (limited to 'runtime')
-rw-r--r--runtime/net_1_1/Makefile.am7
-rw-r--r--runtime/net_2_0/Makefile.am5
2 files changed, 11 insertions, 1 deletions
diff --git a/runtime/net_1_1/Makefile.am b/runtime/net_1_1/Makefile.am
index 04427b0495f..491ae1b311c 100644
--- a/runtime/net_1_1/Makefile.am
+++ b/runtime/net_1_1/Makefile.am
@@ -3,6 +3,8 @@
#
gacutil=$(srcdir)/../gacutil.exe
+sn=$(srcdir)/../sn.exe
+mono_snk=../../../mcs/class/mono.snk
if USE_JIT
mono_runtime = $(top_builddir)/mono/mini/mono
@@ -78,7 +80,10 @@ 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)" ; \
+ echo "MONO_PATH=$(srcdir) $(mono_runtime) --config ../../data/config $(sn) -q -R $(srcdir)/$$i $(mono_snk)" ; \
+ MONO_PATH=$(srcdir) \
+ $(LIBTOOL) --mode=execute $(mono_runtime) --config ../../data/config $(sn) -q -R $(srcdir)/$$i $(mono_snk) || exit 1 ; \
+ 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
diff --git a/runtime/net_2_0/Makefile.am b/runtime/net_2_0/Makefile.am
index 98be13adff4..e49c7689815 100644
--- a/runtime/net_2_0/Makefile.am
+++ b/runtime/net_2_0/Makefile.am
@@ -3,6 +3,8 @@
#
gacutil=$(srcdir)/../gacutil.exe
+sn=$(srcdir)/../sn.exe
+mono_snk=../../../mcs/class/mono.snk
if USE_JIT
mono_runtime = $(top_builddir)/mono/mini/mono
@@ -85,6 +87,9 @@ if INSTALL_2_0
install-data-local:
@if test -n '$(gac_assemblies)'; then \
for i in ''$(gac_assemblies); do \
+ echo "MONO_PATH=$(srcdir) $(mono_runtime) --config ../../data/config $(sn) -q -R $(srcdir)/$$i $(mono_snk)" ; \
+ MONO_PATH=$(srcdir) \
+ $(LIBTOOL) --mode=execute $(mono_runtime) --config ../../data/config $(sn) -q -R $(srcdir)/$$i $(mono_snk) || exit 1 ; \
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 ; \