#!/bin/bash ## # NAME # mpostconf # # SYNOPSIS # mpostconf package version release [variant] # # VERSION # 3.0.0 # 20060205 ## # Variables . $DEVDIR/etc/os.dat . $DEVDIR/etc/def.dat . $DEVDIR/$1/$1.port # Move to /tmp directory cd /tmp/$1-$2 # Post-configure script echo 'Running post-configure scripts' for file in $POSTCONFFILES do echo "$DEVDIR/$1/$file " $DEVDIR/$1/$file $1 $2 $3 $4 done RC=$? exit $RC