/etc -> ${SYSCONFDIR}

This commit is contained in:
brad 2001-02-18 20:48:38 +00:00
parent e9805e72cd
commit 81093ce223
2 changed files with 4 additions and 4 deletions

View File

@ -1,12 +1,12 @@
#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1 2000/08/06 08:42:10 brad Exp $
# $OpenBSD: DEINSTALL,v 1.2 2001/02/18 20:48:38 brad Exp $
#
# esound de-installation
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
CONFIG_FILE=/etc/esd.conf
CONFIG_FILE=${SYSCONFDIR}/esd.conf
if [ -f $CONFIG_FILE ]; then
echo

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $OpenBSD: INSTALL,v 1.1 2000/08/06 08:42:10 brad Exp $
# $OpenBSD: INSTALL,v 1.2 2001/02/18 20:48:38 brad Exp $
#
# Pre/post-installation setup of esound
@ -8,7 +8,7 @@
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
CONFIG_FILE=/etc/esd.conf
CONFIG_FILE=${SYSCONFDIR}/esd.conf
SAMPLE_CONFIG_FILE=$PREFIX/share/examples/esound/esd.conf-sample
do_notice()