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:
authorPaolo Molaro <lupus@oddwiz.org>2004-05-02 21:26:50 +0400
committerPaolo Molaro <lupus@oddwiz.org>2004-05-02 21:26:50 +0400
commitfc3bf7b68f84890d41d2198c131656f3ff97901e (patch)
tree55c57c425ae160b05de3af8271b7bece6f719c40 /runtime
parent2ec61ae5c64bc8b3525f83688b8f1714ecce16e6 (diff)
Use EXTRA_DIST, the dist_ hack is not compatible with automake 1.4.
svn path=/trunk/mono/; revision=26552
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am6
-rw-r--r--runtime/net_1_1/Makefile.am4
-rw-r--r--runtime/net_2_0/Makefile.am4
3 files changed, 8 insertions, 6 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index 7bf5864496b..3523bbc6069 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -6,7 +6,7 @@ SUBDIRS = . net_1_1 net_2_0
mcs_topdir=$(top_srcdir)/../mcs
-dist_monobins_DATA = \
+monobins_DATA = \
mcs.exe \
mbas.exe \
monoresgen.exe \
@@ -31,6 +31,8 @@ dist_monobins_DATA = \
gmcs.exe \
sn.exe
+EXTRA_DIST= $(monobins_DATA)
+
#
# Keep in sync with mono/mono/metadata/Makefile.am
#
@@ -40,7 +42,7 @@ else
monobinsdir = $(bindir)
endif
-$(dist_monobins_DATA):
+$(monobins_DATA):
@case "$@" in \
mcs.exe) d=mcs ;; \
mbas.exe) d=mbas ;; \
diff --git a/runtime/net_1_1/Makefile.am b/runtime/net_1_1/Makefile.am
index 883a26f5731..1d3239e3268 100644
--- a/runtime/net_1_1/Makefile.am
+++ b/runtime/net_1_1/Makefile.am
@@ -67,9 +67,9 @@ gac_assemblies_list = \
gac_assemblies = $(gac_assemblies_list:=.dll)
corlibdir = $(libdir)
-dist_corlib_DATA = mscorlib.dll
+corlib_DATA = mscorlib.dll
-EXTRA_DIST = $(gac_assemblies)
+EXTRA_DIST = $(gac_assemblies) $(corlib_DATA)
CLEANFILES = $(EXTRA_DIST)
diff --git a/runtime/net_2_0/Makefile.am b/runtime/net_2_0/Makefile.am
index 3fc8e98b9f0..c314182962f 100644
--- a/runtime/net_2_0/Makefile.am
+++ b/runtime/net_2_0/Makefile.am
@@ -67,9 +67,9 @@ gac_assemblies_list = \
gac_assemblies = $(gac_assemblies_list:=.dll)
corlibdir = $(libdir)/net_2_0
-dist_corlib_DATA = mscorlib.dll
+corlib_DATA = mscorlib.dll
-EXTRA_DIST = $(gac_assemblies)
+EXTRA_DIST = $(gac_assemblies) $(corlib_DATA)
CLEANFILES = $(EXTRA_DIST)
#