Add -f flag to call to remove.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Tue, 26 Oct 1993 23:12:54 +0000 (23:12 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Tue, 26 Oct 1993 23:12:54 +0000 (23:12 +0000)
v7/src/microcode/unxutl/config

index 3a26184d79a2554ddc5c80975f4276e4c9241f57..133c26299f979b077472e51892b9032c58e63966 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 # Configuration script for MIT Scheme
-# $Id: config,v 1.22 1993/10/26 23:08:54 gjr Exp $
+# $Id: config,v 1.23 1993/10/26 23:12:54 gjr Exp $
 # Modelled on the configuration script for GNU CC
 # The section between lines is the copyright prefix from the GNU CC config.
 #----------------------------------------------------------------------
@@ -180,7 +180,7 @@ perform()
                fi
 
                $remove -f $link
-               rm -f config.out
+               $remove -f config.out
                # Make a symlink if possible, otherwise try a hard link
                $symbolic_link $file $link 2>/dev/null || $hard_link $file $link
 
@@ -209,7 +209,7 @@ perform()
                fi
 
                $remove -f $target
-               rm -f config.out
+               $remove -f config.out
                # Make a symlink if possible, otherwise try a hard link
                $copy $file $target
 
@@ -331,7 +331,7 @@ case $# in
                perform $*
                $move cf.h cf-orig.h
                $edit 's/C_BACK_END 0/C_BACK_END 1/' <cf-orig.h >cf.h
-               $remove cf-orig.h
+               $remove -f cf-orig.h
                exit 0
                ;;