Skip to content
Snippets Groups Projects
Commit c22df346 authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Removed some cruft.

Rev: bin/pike.in:1.2
parent c779bf56
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
# Runs Pike from the build directory.
# Runs Pike directly from the build directory.
PIKE_BASEDIR="BASEDIR"
if test "$PIKE_BASEDIR" = BASEDIR; then
if test "BASEDIR" = BASEDIR; then
echo Run make in the parent directory to generate this script.
exit 1
fi
......@@ -12,7 +11,7 @@ BUILDDIR=${BUILDDIR:-"build/$OS"}
case "$BUILDDIR" in
/*) :;;
*) BUILDDIR="$PIKE_BASEDIR/$BUILDDIR";;
*) BUILDDIR="BASEDIR"/"$BUILDDIR";;
esac
exec "$BUILDDIR/pike" -DNOT_INSTALLED -m "$BUILDDIR/master.pike" "$@"
exec "$BUILDDIR/pike" -DNOT_INSTALLED "-m$BUILDDIR/master.pike" "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment