blob: c1bca3a885b4382a987fad81b6ce919ed333b80e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# $NetBSD: Imakefile,v 1.2 1998/08/07 11:18:26 agc Exp $
#
# in case this hack is already installed
X11_ROOT ?= ProjectRoot
PREFIX = ${X11_ROOT}
install::
${BSD_INSTALL_DATA} xpkgwedge.def ${CONFIGDIR}
@echo updating ${CONFIGDIR}/host.def
@echo '#include <xpkgwedge.def>' >${CONFIGDIR}/host.def.new
@grep -v xpkgwedge ${CONFIGDIR}/host.def >>${CONFIGDIR}/host.def.new || true
@mv -f ${CONFIGDIR}/host.def.new ${CONFIGDIR}/host.def
|