X-Git-Url: http://gitweb/?a=blobdiff_plain;f=pkgmk-cross;h=6d02f4b670789a57d2dabce441e54599819533ce;hb=77b59cfe676b96b077a6a67b37f644c2bdd29d41;hp=f5ecafce82438384bb913b7f98298a9db6e51e94;hpb=573c30b80482a8c3304859c3c08dfc696203c2e7;p=pkgutils-cross.git diff --git a/pkgmk-cross b/pkgmk-cross index f5ecafc..6d02f4b 100755 --- a/pkgmk-cross +++ b/pkgmk-cross @@ -3,8 +3,8 @@ TOPDIR="$(cd $(dirname $(which $0)); pwd)" TMP_CONF="$(mktemp)" -PKGMK=$TOPDIR/src/pkgmk -PKGMK_CONF=$TOPDIR/src/pkgmk.conf +PKGMK=$TOPDIR/pkgmk +PKGMK_CONF=$TOPDIR/pkgmk-cross.conf PKGMK_ARGS="" PKGMK_OPTIMIZE="" @@ -29,7 +29,12 @@ if [ ! -z "$PKGMK_OPTIMIZE" ]; then fi fi -$PKGMK -cf $PKGMK_CONF $PKGMK_ARGS +if [ -x $PKGMK ]; then + $PKGMK -cf $PKGMK_CONF $PKGMK_ARGS +else + chmod +x $PKGMK + $PKGMK -cf $PKGMK_CONF $PKGMK_ARGS +fi rm -f $TMP_CONF