diff options
author | phk <phk@FreeBSD.org> | 1998-09-19 06:14:11 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1998-09-19 06:14:11 +0000 |
commit | c644c0ae4ced416aa59c77a1aa76f9124d46f67d (patch) | |
tree | 389a9cebef221672af3fc450848045f7f0b2eb45 | |
parent | dc569b076a1451eff5022f97dcef24f7b7b21889 (diff) | |
download | FreeBSD-src-c644c0ae4ced416aa59c77a1aa76f9124d46f67d.zip FreeBSD-src-c644c0ae4ced416aa59c77a1aa76f9124d46f67d.tar.gz |
Reverse the sense of the test looking for caesar & strfile.
-rw-r--r-- | games/fortune/datfiles/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/games/fortune/datfiles/Makefile b/games/fortune/datfiles/Makefile index 2624123d..28666dfa 100644 --- a/games/fortune/datfiles/Makefile +++ b/games/fortune/datfiles/Makefile @@ -16,16 +16,16 @@ TYPE= real #TYPE= fake # Try to find these in the build tree -.if exists(../strfile/strfile) -STRFILE=../strfile/strfile -.else +.if exists(/usr/games/strfile) STRFILE=/usr/games/strfile +.else +STRFILE=../strfile/strfile .endif -.if exists(../../caesar/caesar) -CAESAR=../../caesar/caesar -.else +.if exists(/usr/games/caesar) CAESAR=/usr/games/caesar +.else +CAESAR=../../caesar/caesar .endif CLEANFILES+=${BLDS} |