Fix a build breakage due to undefined DESTDIR.

This commit is contained in:
hrs 2006-12-07 17:22:00 +00:00
parent 2201d717a2
commit ae09825481
2 changed files with 6 additions and 7 deletions

View File

@ -2,6 +2,12 @@
RELN_ROOT?= ${.CURDIR}/../..
.ifdef NO_LANGCODE_IN_DESTDIR
DESTDIR?= ${DOCDIR}/relnotes/${.CURDIR:T}
.else
DESTDIR?= ${DOCDIR}/en_US.ISO8859-1/relnotes/${.CURDIR:T}
.endif
DOC?= article
FORMATS?= html
INSTALL_COMPRESSED?= gz

View File

@ -1,7 +0,0 @@
# $FreeBSD$
.ifdef NO_LANGCODE_IN_DESTDIR
DESTDIR?= ${DOCDIR}/relnotes/${.CURDIR:T}
.else
DESTDIR?= ${DOCDIR}/en_US.ISO8859-1/relnotes/${.CURDIR:T}
.endif