projects
/
midori
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
93b352a
)
makedist.midori: Warn if MINGW_PREFIX variable is not set
author
Paweł Forysiuk
<tuxator@o2.pl>
Wed, 8 Feb 2012 23:14:16 +0000
(
00:14
+0100)
committer
Christian Dywan
<christian@twotoasts.de>
Fri, 10 Feb 2012 22:39:36 +0000
(23:39 +0100)
win32/makedist/makedist.midori
patch
|
blob
|
history
diff --git
a/win32/makedist/makedist.midori
b/win32/makedist/makedist.midori
index fed5d836944df5ff80df0f4b4d881b567e01afef..b922c5183a790408cde50cfc944c6837a861f6c2 100755
(executable)
--- a/
win32/makedist/makedist.midori
+++ b/
win32/makedist/makedist.midori
@@
-23,6
+23,11
@@
# a bit of configuration
root_dir=$MINGW_PREFIX
+if [ "$MINGW_PREFIX" == "" ]; then
+ echo "Warning!. MING_PREFIX variable is empty!"
+ sleep 5s
+fi
+
# create temporary working directory
temp_dir=`mktemp -d`