Skip to content

Commit

Permalink
Back out last revision since we modified bsd.pkg.install.mk to require
Browse files Browse the repository at this point in the history
that {,DE}INSTALL_EXTRA_TMPL to be set if a package Makefile wants to use
them.
  • Loading branch information
jlam committed Aug 30, 2003
1 parent c75890f commit ec82550
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions mk/bsd.pkg.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: bsd.pkg.mk,v 1.1249 2003/08/30 20:52:09 jlam Exp $
# $NetBSD: bsd.pkg.mk,v 1.1250 2003/08/30 22:57:05 jlam Exp $
#
# This file is in the public domain.
#
Expand Down Expand Up @@ -559,6 +559,14 @@ PLIST_SUBST+= PERL5_SITEARCH=${PERL5_SITEARCH:S/^${LOCALBASE}\///}
PLIST_SUBST+= PERL5_ARCHLIB=${PERL5_ARCHLIB:S/^${LOCALBASE}\///}
.endif

# Handle info files
#
INFO_FILES?= # default to no info files to handle
USE_MAKEINFO?= no # default to not using makeinfo
.if !empty(INFO_FILES) || empty(USE_MAKEINFO:M[nN][oO])
. include "../../mk/texinfo.mk"
.endif

.if defined(USE_PKGINSTALL) && !empty(USE_PKGINSTALL:M[yY][eE][sS])
. include "../../mk/bsd.pkg.install.mk"
.endif
Expand All @@ -573,14 +581,6 @@ INSTALL_FILE= ${PKGDIR}/INSTALL
DEINSTALL_FILE= ${PKGDIR}/DEINSTALL
.endif

# Handle info files
#
INFO_FILES?= # default to no info files to handle
USE_MAKEINFO?= no # default to not using makeinfo
.if !empty(INFO_FILES) || empty(USE_MAKEINFO:M[nN][oO])
. include "../../mk/texinfo.mk"
.endif

# If MESSAGE hasn't been defined, then set MESSAGE_SRC to be a space-separated
# list of files to be concatenated together to generate the MESSAGE file.
#
Expand Down

0 comments on commit ec82550

Please sign in to comment.