]> git.pld-linux.org Git - packages/bash.git/commitdiff
- mv -f instead of mv
authorSebastian Zagrodzki <sebek@zagrodzki.net>
Sat, 17 Jun 2000 17:36:36 +0000 (17:36 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    bash.spec -> 1.51

bash.spec

index 07de8c5fe12acc46e83a3658b5524dec33e207c0..e2d9b49b08549b4874675efb1ac1954a7d9812ee 100644 (file)
--- a/bash.spec
+++ b/bash.spec
@@ -147,7 +147,7 @@ LDFLAGS="-s"; export LDFLAGS
        --with-installed-readline
 
 %{__make} TERMCAP_LIB="-ltinfo"
-mv bash bash.static
+mv -f bash bash.static
 %{__make} TERMCAP_LIB="-ltinfo" STATIC_LD=""
 
 %install
@@ -203,13 +203,13 @@ fi
 %preun
 if [ $1 = 0 ]; then
        grep -v /bin/bash /etc/shells | grep -v /bin/rbash > /etc/shells.new
-       mv /etc/shells.new /etc/shells
+       mv -f /etc/shells.new /etc/shells
 fi
 
 %preun static
 if [ $1 = 0 ]; then
        grep -v /bin/bash.static /etc/shells > /etc/shells.new
-       mv /etc/shells.new /etc/shells
+       mv -f /etc/shells.new /etc/shells
 fi
 
 %postun
This page took 0.038963 seconds and 4 git commands to generate.