Revision
68281
Author
jmr@macports.org
Date
2010-05-30 18:33:59 -0700 (Sun, 30 May 2010)

Log Message

log a message when copying config files in postflight

Modified Paths

Diff

Modified: trunk/base/portmgr/dmg/postflight (68280 => 68281)


--- trunk/base/portmgr/dmg/postflight	2010-05-31 01:33:28 UTC (rev 68280)
+++ trunk/base/portmgr/dmg/postflight	2010-05-31 01:33:59 UTC (rev 68281)
@@ -55,6 +55,7 @@
 function setup_configs {
     for f in macports.conf sources.conf variants.conf ; do
         if [ ! -f ${CONFIGPATH}/${f} ]; then
+            echo "Copying ${f}.default to ${f}"
             /bin/cp ${CONFIGPATH}/${f}.default ${CONFIGPATH}/${f}
             /bin/chmod 644 ${CONFIGPATH}/${f}
         fi