diff options
author | bde <bde@FreeBSD.org> | 1997-04-10 15:15:43 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-04-10 15:15:43 +0000 |
commit | 2635010c09d1b2cfb8ef5d09812f5659e7cfab7c (patch) | |
tree | 0b73a91b2df1d0039fc72c55a71fc25de2d56a2b /share/mklocale | |
parent | 5b0d745f8b3e7b469fbdea89b0ef0a4f4c1f204b (diff) | |
download | FreeBSD-src-2635010c09d1b2cfb8ef5d09812f5659e7cfab7c.zip FreeBSD-src-2635010c09d1b2cfb8ef5d09812f5659e7cfab7c.tar.gz |
Fixed bogus existence check related to searching for a nearby obj directory.
Now the search is as incomplete as elsewhere instead of broken.
Diffstat (limited to 'share/mklocale')
-rw-r--r-- | share/mklocale/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mklocale/Makefile b/share/mklocale/Makefile index 2b18f1e..6416bed 100644 --- a/share/mklocale/Makefile +++ b/share/mklocale/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1997/02/28 19:51:39 wosch Exp $ +# $Id: Makefile,v 1.8 1997/02/28 22:44:31 adam Exp $ NOMAN=YES CLEANFILES+= ${LOCALES:S/$/.out/g} @@ -13,7 +13,7 @@ LOCALES= ja_JP.EUC \ LOCALEDIR= ${DESTDIR}/usr/share/locale -.if exists(${.OBJDIR}/..) +.if exists(${.OBJDIR}/../mklocale) MKLOCALE=${.OBJDIR}/../mklocale .else MKLOCALE=${.CURDIR}/../mklocale |