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:
authorMiguel de Icaza <miguel@gnome.org>2008-09-11 02:43:40 +0400
committerMiguel de Icaza <miguel@gnome.org>2008-09-11 02:43:40 +0400
commitc8401681d0721add6121c8349340eb23f7dbf2b9 (patch)
treec4704e284ab323769539c1c0283aa4c5991e2d9f /scripts
parent343bbc6c8396159ded9eb637cf0d21b48e16f795 (diff)
Update for csharp.exe command
svn path=/trunk/mono/; revision=112720
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.am12
-rw-r--r--scripts/csharp.bat.in2
-rw-r--r--scripts/csharp.in2
3 files changed, 2 insertions, 14 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
index 7d3e7b3d581..7f881187c06 100644
--- a/scripts/Makefile.am
+++ b/scripts/Makefile.am
@@ -12,13 +12,11 @@
#
if USE_BATCH_FILES
SCRIPT_IN=script.bat.in
-CSHARP_IN=csharp.bat.in
SMCS_IN=smcs.bat.in
FILTER=sed -e 's,\.bat\.exe,\.exe,g' -e 's,/,\\,g'
SCRIPT_SUFFIX=.bat
else
SCRIPT_IN=script.in
-CSHARP_IN=csharp.in
SMCS_IN=smcs.in
FILTER=cat
SCRIPT_SUFFIX=
@@ -37,7 +35,6 @@ bin_SCRIPTS = \
$(scripts_service) \
$(scripts_nunit) \
$(scripts_rpmhelpers) \
- csharp$(SCRIPT_SUFFIX) \
mono-test-install
scripts_1_0_compat = \
@@ -85,6 +82,7 @@ scripts_1_0_umask = \
scripts_2_0 = \
al2$(SCRIPT_SUFFIX) \
+ csharp$(SCRIPT_SUFFIX) \
gacutil2$(SCRIPT_SUFFIX) \
genxs2$(SCRIPT_SUFFIX) \
gmcs$(SCRIPT_SUFFIX) \
@@ -125,12 +123,10 @@ scripts_rpmhelpers = mono-find-provides mono-find-requires
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA= mono-nunit.pc
-CLEANFILES = $(scripts_1_0) $(scripts_1_0_umask) $(scripts_2_0) $(scripts_2_1) $(scripts_defaults) $(scripts_1_0_compat) mono-service mono-service2 nunit-console nunit-console2 mono-find-provides mono-find-requires csharp
+CLEANFILES = $(scripts_1_0) $(scripts_1_0_umask) $(scripts_2_0) $(scripts_2_1) $(scripts_defaults) $(scripts_1_0_compat) mono-service mono-service2 nunit-console nunit-console2 mono-find-provides mono-find-requires
DISTCLEANFILES = $(pkgconfig_DATA) $(scripts_rpmhelpers)
EXTRA_DIST = \
- csharp.in \
- csharp.bat.in \
script.in \
script.bat.in \
script_umask.in \
@@ -200,10 +196,6 @@ smcs$(SCRIPT_SUFFIX): $(SMCS_IN) Makefile
$(REWRITE2_1) -e "s,@""exe_name@,smcs,g" $(srcdir)/$(SMCS_IN) | $(FILTER) > $@.tmp
mv $@.tmp $@
-csharp$(SCRIPT_SUFFIX): $(CSHARP_IN) Makefile
- $(REWRITE2) -e "s,@""exe_name@,smcs,g" $(srcdir)/$(CSHARP_IN) | $(FILTER) > $@.tmp
- mv $@.tmp $@
-
$(scripts_1_0): $(SCRIPT_IN) Makefile
$(REWRITE1) -e 's,@''exe_name@,$@,g' $(srcdir)/$(SCRIPT_IN) | $(FILTER) > $@.tmp
mv $@.tmp $@
diff --git a/scripts/csharp.bat.in b/scripts/csharp.bat.in
deleted file mode 100644
index af8568e8b71..00000000000
--- a/scripts/csharp.bat.in
+++ /dev/null
@@ -1,2 +0,0 @@
-@echo off
-@bindir@\@mono_interp@ %MONO_OPTIONS% @mono_instdir@\@framework_version@\gmcs.exe --shell %1 %2 %3 %4 %5 %6 %7 %8 %9
diff --git a/scripts/csharp.in b/scripts/csharp.in
deleted file mode 100644
index 0db9b276a8a..00000000000
--- a/scripts/csharp.in
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec @bindir@/@mono_interp@ $MONO_OPTIONS @mono_instdir@/@framework_version@/gmcs.exe --shell "$@"