17e39f419d
The actual fix as been done by "pkglint -F */*/buildlink3.mk", and was reviewed manually. There are some .include lines that still are indented with zero spaces although the surrounding .if is indented. This is existing practice.
25 lines
640 B
Makefile
25 lines
640 B
Makefile
# $NetBSD: buildlink3.mk,v 1.5 2018/01/07 13:04:11 rillig Exp $
|
|
#
|
|
|
|
#
|
|
# Only for older GNU Emacs. Emacs 22 or later doesn't need this because it
|
|
# incorporated Unicode support.
|
|
#
|
|
|
|
.include "../../editors/emacs/modules.mk"
|
|
.if ${EMACS_FLAVOR} == "emacs" && ${EMACS_VERSION_MAJOR} < 22
|
|
|
|
BUILDLINK_TREE+= mule-ucs
|
|
|
|
. if !defined(MULE_UCS_BUILDLINK3_MK)
|
|
MULE_UCS_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.mule-ucs+= ${EMACS_PKGNAME_PREFIX}Mule-UCS>=0.84
|
|
BUILDLINK_PKGSRCDIR.mule-ucs?= ../../editors/mule-ucs
|
|
|
|
BUILDLINK_CONTENTS_FILTER.mule-ucs= ${EGREP} '.*\.el$$|.*\.elc$$'
|
|
|
|
. endif # MULE_UCS_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -mule-ucs
|
|
.endif
|