From a3b7ac53d6d5909fef704d77d5e06a7bd595541a Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 5 Dec 2000 23:04:13 +0000 Subject: [PATCH] Fix broken logic. --- v7/src/Makefile.std | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/v7/src/Makefile.std b/v7/src/Makefile.std index 6a1712e7e..af8699e13 100644 --- a/v7/src/Makefile.std +++ b/v7/src/Makefile.std @@ -1,4 +1,4 @@ -# $Id: Makefile.std,v 1.6 2000/12/05 22:56:56 cph Exp $ +# $Id: Makefile.std,v 1.7 2000/12/05 23:04:13 cph Exp $ # # Copyright (c) 2000 Massachusetts Institute of Technology # @@ -27,9 +27,9 @@ all: echo "No ALL action" setup: - test -f ed-ffi.scm \ - && test ! -f .edwin-ffi \ - && ln -s ed-ffi.scm .edwin-ffi + test ! -f ed-ffi.scm \ + || test -f .edwin-ffi \ + || ln -s ed-ffi.scm .edwin-ffi tags TAGS: etags *.scm -- 2.25.1