blob: 359f532cb854386c993eb5baf9978f0c73fcbc7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: interpreter.mk,v 1.1 2007/01/12 08:44:48 rillig Exp $
#
# Package-settable variables:
#
# REPLACE_TK_TIX
# The list of files whose interpreter will be corrected.
#
# See also:
# replace-interpreter
#
.if !defined(TK_TIX_INTERPRETER_MK)
TK_TIX_INTERPRETER_MK= # defined
REPLACE_INTERPRETER+= tk-Tix
REPLACE.tk-Tix.old= .*/tixwish
REPLACE.tk-Tix.new= ${LOCALBASE}/bin/tixwish
REPLACE_FILES.tk-Tix= ${REPLACE_TK_TIX}
.endif
|