From 38301052e112cecfa8897e3b16e89e19bcfc1504 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= Date: Mon, 25 Feb 2019 10:58:14 +0100 Subject: [PATCH] Allow ifconfig to be called from any directory ifconfig.sh depends on config.guess for platform guessing. It uses it to choose between ifconfig or ip tools to configure interfaces. If system-wide automake script is installed and local was not found, use platform guess. It should work well on mostly any sane platform. Still prefers local guess, but passes when if cannot find it. --- bin/tests/system/ifconfig.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/ifconfig.sh b/bin/tests/system/ifconfig.sh index e8232f87bd1..c6b412a8f2d 100755 --- a/bin/tests/system/ifconfig.sh +++ b/bin/tests/system/ifconfig.sh @@ -21,7 +21,7 @@ # config_guess="" -for f in ./config.guess ../../../config.guess +for f in ./config.guess ../../../config.guess /usr/share/automake*/config.guess do if test -f $f then -- GitLab