Skip to content
Snippets Groups Projects
Commit 5fcc1463 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

compile.sh: fix for pure sh (e.g. debian)

pushd and popd are not available
parent 65be770e
No related branches found
No related tags found
No related merge requests found
...@@ -248,13 +248,13 @@ else ...@@ -248,13 +248,13 @@ else
CLEAN="distclean" CLEAN="distclean"
if [ ! -f config.h ]; then if [ ! -f config.h ]; then
echo "Bootstraping" echo "Bootstraping"
pushd ../../../ cd ../../../
echo $PWD echo $PWD
./configure.sh --with-opensl --without-dbus ./configure.sh --with-opensl --without-dbus
cd sflphone/daemon cd sflphone/daemon
echo "Building" echo "Building"
make $MAKEFLAGS make $MAKEFLAGS
popd cd contrib
fi fi
TARGET= TARGET=
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment