#!/bin/sh
# convenience wrapper
fw_topdir="`dirname $0`"
fw_topdir_canon="`readlink -f $fw_topdir`"
if [ -d .svn ]; then
    if [ ! -d "build_sys" ]; then
        echo "Adding build_sys to your checkout"
        svn -q up build_sys
    fi
fi
exec "$fw_topdir_canon/build_sys/ppsetview.sh" "$fw_topdir_canon" "$@"
