log a message when copying config files in postflight
--- 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