From e482b34a8ba83ece2133cebcd66db10edafa436c Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 18 Aug 2014 00:25:53 -0700 Subject: [PATCH] _autosetup: tweak to work with dash as well as bach (from Christian) --- _autosetup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_autosetup b/_autosetup index f9badaed22..3fda0ee039 100755 --- a/_autosetup +++ b/_autosetup @@ -135,7 +135,7 @@ check_version() ## ---------- now run autoreconf cmdline="autoreconf -i"; ## -- if _autosetup was invoked with -f run autoreconf with -f to force a recreation of all files - if [ "$1" == "-f" ]; then + if [ "$1" = "-f" ]; then cmdline="autoreconf -i -f"; fi echo "$cmdline"