From mboxrd@z Thu Jan 1 00:00:00 1970 From: Petr Vorel Subject: [PATCH iproute2 4/7] configure: Remove non-posix shell expansion Date: Sat, 22 Sep 2018 23:24:48 +0200 Message-ID: <20180922212451.327-5-petr.vorel@gmail.com> References: <20180922212451.327-1-petr.vorel@gmail.com> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: Petr Vorel , Stephen Hemminger To: netdev@vger.kernel.org Return-path: Received: from mail-wr1-f48.google.com ([209.85.221.48]:36941 "EHLO mail-wr1-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728020AbeIWDUH (ORCPT ); Sat, 22 Sep 2018 23:20:07 -0400 Received: by mail-wr1-f48.google.com with SMTP id u12-v6so16016489wrr.4 for ; Sat, 22 Sep 2018 14:25:07 -0700 (PDT) In-Reply-To: <20180922212451.327-1-petr.vorel@gmail.com> Sender: netdev-owner@vger.kernel.org List-ID: + change shebang to /bin/sh Signed-off-by: Petr Vorel --- configure | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 34325f99..8f4a7f1e 100755 --- a/configure +++ b/configure @@ -1,4 +1,4 @@ -#! /bin/bash +#!/bin/sh # SPDX-License-Identifier: GPL-2.0 # This is not an autoconf generated configure # @@ -180,7 +180,8 @@ check_ipt_lib_dir() for dir in /lib /usr/lib /usr/local/lib do - for file in $dir/{xtables,iptables}/lib*t_*so ; do + for file in "xtables" "iptables"; do + file="$dir/$file/lib*t_*so" if [ -f $file ]; then echo ${file%/*} echo "IPT_LIB_DIR:=${file%/*}" >> $CONFIG -- 2.19.0.rc2