diff options
author | jkh <jkh@FreeBSD.org> | 1996-06-24 04:26:21 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-06-24 04:26:21 +0000 |
commit | 8eb37231d4405088a481324c2ec41ac851e8d8f7 (patch) | |
tree | dc80da53186aab7c56424c2574b0cd7928930721 /games | |
parent | 3acbd3cce674dab9a0afdee1f6e50196f4585ffa (diff) | |
download | FreeBSD-src-8eb37231d4405088a481324c2ec41ac851e8d8f7.zip FreeBSD-src-8eb37231d4405088a481324c2ec41ac851e8d8f7.tar.gz |
Bring in my changes for removing the pestilent obj links (unless you
really want them) from /usr/src. This is the final version of the
patches, incorporating the feedback I've received from -current.
Diffstat (limited to 'games')
-rw-r--r-- | games/fortune/datfiles/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/fortune/datfiles/Makefile b/games/fortune/datfiles/Makefile index d3962d9..5d585fa 100644 --- a/games/fortune/datfiles/Makefile +++ b/games/fortune/datfiles/Makefile @@ -15,16 +15,16 @@ TYPE= real # THE FOURTH LINE #TYPE= fake -.if exists(${.CURDIR}/../../caesar/obj/caesar) -CAESAR=${.CURDIR}/../../caesar/obj/caesar +.if exists(${.OBJDIR}/../../caesar/caesar) +CAESAR=${.OBJDIR}/../../caesar/caesar .elif exists(${.CURDIR}/../../caesar/caesar) CAESAR=${.CURDIR}/../../caesar/caesar .else CAESAR=/usr/games/caesar .endif -.if exists(${.CURDIR}/../strfile/obj/strfile) -STRFILE=${.CURDIR}/../strfile/obj/strfile +.if exists(${.OBJDIR}/../strfile/strfile) +STRFILE=${.OBJDIR}/../strfile/strfile .elif exists(${.CURDIR}/../strfile/strfile) STRFILE=${.CURDIR}/../strfile/strfile .else |