diff options
author | jlam <jlam@pkgsrc.org> | 2002-01-23 15:02:27 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-01-23 15:02:27 +0000 |
commit | 31fdf27c0c6c796db23d2bdb98007eda995e4c7d (patch) | |
tree | f80007b3bcf986719ed562022b12a771ea6903c9 /mk/install | |
parent | 1269c180411557bed16a1b064596656bb7ae721e (diff) | |
download | pkgsrc-31fdf27c0c6c796db23d2bdb98007eda995e4c7d.tar.gz |
Be more pervasive with previous change.
Diffstat (limited to 'mk/install')
-rw-r--r-- | mk/install/install | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/mk/install/install b/mk/install/install index dab450e2090..cde5d30a3ec 100644 --- a/mk/install/install +++ b/mk/install/install @@ -1,6 +1,6 @@ # start of install # -# $NetBSD: install,v 1.7 2002/01/23 15:01:08 jlam Exp $ +# $NetBSD: install,v 1.8 2002/01/23 15:02:27 jlam Exp $ case ${STAGE} in PRE-INSTALL) @@ -102,7 +102,8 @@ POST-INSTALL) if [ -e "${file}" ] then - ${ECHO} " ${file} already exists" + ${ECHO} " ${file} already exists, example file is" + ${ECHO} " ${samplefile}" else if [ -e "${samplefile}" ] then @@ -139,7 +140,8 @@ POST-INSTALL) if [ -e ${file} ] then - ${ECHO} " ${file} already exists" + ${ECHO} " ${file} already exists, example file is" + ${ECHO} " ${samplefile}" else if [ -e "${samplefile}" ] then @@ -159,7 +161,8 @@ POST-INSTALL) if [ -e "${file}" ] then - ${ECHO} " ${file} already exists" + ${ECHO} " ${file} already exists, example file is" + ${ECHO} " ${samplefile}" else if [ -e "${samplefile}" ] then |