diff options
author | Jim Blandy <jimb@redhat.com> | 1992-09-30 21:44:26 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-09-30 21:44:26 +0000 |
commit | 9e7cd9225e492f8e3b10c06a5425de9ddadbdb66 (patch) | |
tree | deffbe97a73f185352edde5913c195917b2b26d0 | |
parent | a0ebb746f14033e0137743d7b2bba25085d8ffee (diff) | |
download | emacs-9e7cd9225e492f8e3b10c06a5425de9ddadbdb66.tar.gz |
entered into RCS
-rw-r--r-- | lib-src/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 51f96b1a03f..f51b051a885 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in @@ -38,11 +38,12 @@ LOADLIBES= all: ../arch-lib +# We use rm -f so that rm won't try to ask questions during the build. ../arch-lib: ${EXECUTABLES} for file in ${EXECUTABLES} ; do \ if [ -f $${file} ]; then \ if [ -f ../arch-lib/$${file} ]; then \ - rm ../arch-lib/$${file} ; \ + rm -f ../arch-lib/$${file} ; \ fi ; \ ln $${file} ../arch-lib ; \ fi ; \ |