summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--print/cups/pkg/INSTALL8
1 files changed, 5 insertions, 3 deletions
diff --git a/print/cups/pkg/INSTALL b/print/cups/pkg/INSTALL
index 563d13565ce..ded966fdfa0 100644
--- a/print/cups/pkg/INSTALL
+++ b/print/cups/pkg/INSTALL
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: INSTALL,v 1.1 2000/07/12 20:09:40 jlam Exp $
+# $NetBSD: INSTALL,v 1.2 2000/07/13 01:01:11 jlam Exp $
PKGNAME=$1
STAGE=$2
@@ -29,9 +29,11 @@ POST-INSTALL)
mime.types \
printers.conf
do
- if [ ! -f ${SERVERROOT}/${file} ]
+ if [ -f ${SERVERROOT}/${file} ]
then
- echo " ${file}"
+ echo " ${SERVERROOT}/${file} already exists"
+ else
+ echo " ${PKG_PREFIX}/share/examples/cups/${file} --> ${SERVERROOT}/${file}"
cp ${PKG_PREFIX}/share/examples/cups/${file} \
${SERVERROOT}/${file}
chmod 644 ${SERVERROOT}/${file}