12 lines
254 B
Plaintext
12 lines
254 B
Plaintext
#!/bin/sh
|
|
# $NetBSD: INSTALL,v 1.1.1.1 2007/11/03 21:46:38 drochner Exp $
|
|
|
|
case ${STAGE} in
|
|
POST-INSTALL)
|
|
if [ ! -e /usr/share/zoneinfo/zone.tab ]; then
|
|
/usr/bin/install ${PREFIX}/share/examples/zoneinfo/zone.tab \
|
|
/usr/share/zoneinfo
|
|
fi
|
|
;;
|
|
esac
|