summaryrefslogtreecommitdiff
path: root/gst-autogen.sh
diff options
context:
space:
mode:
authorMatthias Friedrich <matt@mafr.de>2003-04-13 13:38:38 +0000
committerChristian Schaller <uraeus@gnome.org>2003-04-13 13:38:38 +0000
commit0322f166e7b48ac9d305687346e7e84200cbfbae (patch)
tree125763d229bea312db135ea50932e7ce18ae4569 /gst-autogen.sh
parent50879a63c4fa8f2544d4d89a9dbfa0f5720c3266 (diff)
Using bash is problematic on non-linux plattforms, Matthias use NetBSD.
Original commit message from CVS: moving GStreamer from Bash to sh. Patch from Matthias Friedrich <matt@mafr.de> Using bash is problematic on non-linux plattforms, Matthias use NetBSD. Matthias message: I appended the promised fix to autogen.sh and friends. That way, only plain /bin/sh is needed as it is present on all Unices. The problems were non-portable pushd/popd functions and the usage of a '==' comparison which is non-standard in test(1). The standard is '=', although C programmers never believe it.
Diffstat (limited to 'gst-autogen.sh')
-rw-r--r--gst-autogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-autogen.sh b/gst-autogen.sh
index f9f2ab5..213047b 100644
--- a/gst-autogen.sh
+++ b/gst-autogen.sh
@@ -198,7 +198,7 @@ die_check ()
autogen_options ()
{
- if test "x$1" == "x"; then
+ if test "x$1" = "x"; then
return 0
fi