From 83134551610941b11081128fcce12ba95ed47964 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sun, 18 Mar 2012 21:38:39 +0100 Subject: tools: config-gen: make scripts bourne sh compliant [checkbashisms] $ checkbashisms config-gen script config-gen does not appear to be a /bin/sh script possible bashism in config-gen line 27 (export foo=bar should be foo=bar; export foo): export CFLAGS="$CFLAGS" $ checkbashisms config-gen-functions.sh possible bashism in config-gen-functions.sh line 14 ('function' is useless): Signed-off-by: Sami Kerola --- tools/config-gen | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tools/config-gen') diff --git a/tools/config-gen b/tools/config-gen index 441e5a465..720c5a7dd 100755 --- a/tools/config-gen +++ b/tools/config-gen @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # # Copyright (C) 2011 Karel Zak # @@ -24,7 +24,8 @@ for x in $opts; do done if [ -n "$CFLAGS" ]; then echo "CFLAGS: $CFLAGS" - export CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS" + export CFLAGS fi echo -- cgit v1.2.3-55-g7522