From: Guillermo J. Rozas Date: Tue, 26 Oct 1993 23:12:54 +0000 (+0000) Subject: Add -f flag to call to remove. X-Git-Tag: 20090517-FFI~7683 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=f4fcee4029d2fcde739634e0e70f5bf4b58c37f9;p=mit-scheme.git Add -f flag to call to remove. --- diff --git a/v7/src/microcode/unxutl/config b/v7/src/microcode/unxutl/config index 3a26184d7..133c26299 100755 --- a/v7/src/microcode/unxutl/config +++ b/v7/src/microcode/unxutl/config @@ -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.h - $remove cf-orig.h + $remove -f cf-orig.h exit 0 ;;