aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2011-03-19 08:46:09 -0600
committerGravatar Brendan Taylor <whateley@gmail.com>2011-03-19 08:46:09 -0600
commit0c76d87b6006194ead35c8fb5cf1986fb0367e19 (patch)
tree942f25cec677f0a5b6c3d08dda9b8c8092f961c4 /Makefile
parenta227c770d91fdc48245410cefc99aaf83851de00 (diff)
fix bashisms in makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 62bc9b5..91b66b6 100644
--- a/Makefile
+++ b/Makefile
@@ -74,7 +74,7 @@ test-uzbl-core-sandbox: uzbl-core
make DESTDIR=./sandbox RUN_PREFIX=`pwd`/sandbox/usr/local install-uzbl-core
make DESTDIR=./sandbox RUN_PREFIX=`pwd`/sandbox/usr/local install-example-data
cp -np ./misc/env.sh ./sandbox/env.sh
- source ./sandbox/env.sh && uzbl-core --uri http://www.uzbl.org --verbose
+ . ./sandbox/env.sh && uzbl-core --uri http://www.uzbl.org --verbose
make DESTDIR=./sandbox uninstall
rm -rf ./sandbox/usr
@@ -83,9 +83,9 @@ test-uzbl-browser-sandbox: uzbl-browser
make DESTDIR=./sandbox RUN_PREFIX=`pwd`/sandbox/usr/local install-uzbl-browser
make DESTDIR=./sandbox RUN_PREFIX=`pwd`/sandbox/usr/local install-example-data
cp -np ./misc/env.sh ./sandbox/env.sh
- -source ./sandbox/env.sh && uzbl-event-manager restart -avv
- source ./sandbox/env.sh && uzbl-browser --uri http://www.uzbl.org --verbose
- source ./sandbox/env.sh && uzbl-event-manager stop -ivv
+ -. ./sandbox/env.sh && uzbl-event-manager restart -avv
+ . ./sandbox/env.sh && uzbl-browser --uri http://www.uzbl.org --verbose
+ . ./sandbox/env.sh && uzbl-event-manager stop -ivv
make DESTDIR=./sandbox uninstall
rm -rf ./sandbox/usr
@@ -94,9 +94,9 @@ test-uzbl-tabbed-sandbox: uzbl-browser
make DESTDIR=./sandbox RUN_PREFIX=`pwd`/sandbox/usr/local install-uzbl-browser
make DESTDIR=./sandbox RUN_PREFIX=`pwd`/sandbox/usr/local install-example-data
cp -np ./misc/env.sh ./sandbox/env.sh
- -source ./sandbox/env.sh && uzbl-event-manager restart -avv
- source ./sandbox/env.sh && ./sandbox/home/.local/share/uzbl/scripts/uzbl-tabbed
- source ./sandbox/env.sh && uzbl-event-manager stop -ivv
+ -. ./sandbox/env.sh && uzbl-event-manager restart -avv
+ . ./sandbox/env.sh && ./sandbox/home/.local/share/uzbl/scripts/uzbl-tabbed
+ . ./sandbox/env.sh && uzbl-event-manager stop -ivv
make DESTDIR=./sandbox uninstall
rm -rf ./sandbox/usr