SHA256
1
0
forked from pool/axel
axel/axel-2.4-configure.patch
Andreas Stieger dc2924c500 Accepting request 97958 from home:AndreasStieger:branches:network:utilities
- Update License to GPL-2.0+
- add axel-2.4-configure.patch to make configure script accept and
  ignore --disable-dependency-tracking

OBS-URL: https://build.opensuse.org/request/show/97958
OBS-URL: https://build.opensuse.org/package/show/network:utilities/axel?expand=0&rev=5
2011-12-22 17:14:43 +00:00

31 lines
784 B
Diff

When called with --disable-dependency-tracking, the configure
script would exit with the usage output. This patch make the script
accept and ignore that option.
Index: configure
===================================================================
--- configure.orig 2009-04-27 15:19:03.000000000 +0100
+++ configure 2011-12-22 16:46:32.000000000 +0000
@@ -20,7 +20,7 @@ strip=1
arch=`uname -s`
while [ -n "$1" ]; do
- e="`expr "$1" : '--\(.*=.*\)'`"
+ e="`expr "$1" : '--\(.*\)'`"
if [ -z "$e" ]; then
cat<<EOF
Axel configure
@@ -44,8 +44,10 @@ EOF
keyname=$(expr "$e" : '\(.*\)=.*' | sed 's/[^a-z0-9_]/_/g')
value=$(expr "$e" : '.*=\(.*\)' | sed "s/'/_/g")
-
- eval "$keyname='$value'"
+
+ if [ -n "$value" ]; then
+ eval "$keyname='$value'"
+ fi
shift;
done