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>2009-10-01 19:11:20 +0400
committerRaja R Harinath <harinath@hurrynot.org>2009-10-01 19:11:20 +0400
commit9e2aca4ad248e51b58ffd97a54da72384683644c (patch)
treee8f878d5db0ba6b98cd58834c0ded0d4394d1451 /scripts
parentfcb24db9e49223866a74a3c0f08bfd82da185e7f (diff)
* scripts/Makefile.am: Use 'mv -f' instead of 'mv'.
svn path=/trunk/mono/; revision=143161
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.am22
1 files changed, 11 insertions, 11 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
index 5fbde483e4b..6498e85aeba 100644
--- a/scripts/Makefile.am
+++ b/scripts/Makefile.am
@@ -198,51 +198,51 @@ REWRITE2_DEBUG = $(REWRITE_DEBUG) -e 's,@''framework_version@,2.0,g'
mono-service: mono-service.in Makefile
$(REWRITE1) -e 's,@''exe_name@,$@,g' $(srcdir)/mono-service.in > $@.tmp
- mv $@.tmp $@
+ mv -f $@.tmp $@
mono-service2: mono-service.in Makefile
$(REWRITE2) -e 's,@''exe_name@,$@,g' $(srcdir)/mono-service.in > $@.tmp
- mv $@.tmp $@
+ mv -f $@.tmp $@
nunit-console$(SCRIPT_SUFFIX): $(SCRIPT_IN) Makefile
$(REWRITE1_DEBUG) -e 's,@''exe_name@,nunit-console,g' $(srcdir)/$(SCRIPT_IN) | $(FILTER) > $@.tmp
- mv $@.tmp $@
+ mv -f $@.tmp $@
nunit-console2$(SCRIPT_SUFFIX): $(SCRIPT_IN) Makefile
$(REWRITE2_DEBUG) -e 's,@''exe_name@,nunit-console,g' $(srcdir)/$(SCRIPT_IN) | $(FILTER) > $@.tmp
- mv $@.tmp $@
+ mv -f $@.tmp $@
#FIXME: this is not the correct rule for mod.bat.
mod$(SCRIPT_SUFFIX): mod.in Makefile
$(REWRITE1) -e "s,@""exe_name@,mod,g" $(srcdir)/mod.in > $@.tmp
- mv $@.tmp $@
+ mv -f $@.tmp $@
$(scripts_1_0): $(SCRIPT_IN) Makefile
$(REWRITE1) -e 's,@''exe_name@,$@,g' $(srcdir)/$(SCRIPT_IN) | $(FILTER) > $@.tmp
- mv $@.tmp $@
+ mv -f $@.tmp $@
#FIXME: this is not the correct rule for bat files.
$(scripts_1_0_umask): script_umask.in Makefile
$(REWRITE1) -e 's,@''exe_name@,$@,g' $(srcdir)/script_umask.in > $@.tmp
- mv $@.tmp $@
+ mv -f $@.tmp $@
$(scripts_1_0_compat): $(SCRIPT_IN) Makefile
t=`basename $@ $(COMPAT_1_0_SUFFIX)`; $(REWRITE1) -e "s,@exe_name@,$$t,g" $(srcdir)/$(SCRIPT_IN) | $(FILTER) > $@.tmp
- mv $@.tmp $@
+ mv -f $@.tmp $@
$(scripts_defaults): $(SCRIPT_IN) Makefile
$(REWRITE2) -e "s,@exe_name@,$@,g" $(srcdir)/$(SCRIPT_IN) | $(FILTER) > $@.tmp
- mv $@.tmp $@
+ mv -f $@.tmp $@
$(scripts_2_0): $(SCRIPT_IN) Makefile
n=`echo $@ | sed 's,$(COMPAT_2_0_SUFFIX)$$,,'`; \
$(REWRITE2) -e "s,@""exe_name@,$$n,g" $(srcdir)/$(SCRIPT_IN) | $(FILTER) > $@.tmp
- mv $@.tmp $@
+ mv -f $@.tmp $@
$(scripts_4_0): $(SCRIPT_IN) Makefile
n=`echo $@ | sed 's,$(COMPAT_4_0_SUFFIX)$$,,'`; \
$(REWRITE4) -e "s,@""exe_name@,$$n,g" $(srcdir)/$(SCRIPT_IN) | $(FILTER) > $@.tmp
- mv $@.tmp $@
+ mv -f $@.tmp $@
$(MDOC_SUBCOMMANDS): Makefile
for script in $(MDOC_SUBCOMMANDS) ; do \