blob: c409327f9557880ff77e62b874eba434ef73f350 [file] [log] [blame]
Patrick Williams92b42cb2022-09-03 06:53:57 -05001From ba1365f19ccc8378f2fcff892721187537479884 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 15 Dec 2021 21:47:53 -0800
4Subject: [PATCH] tzselect.ksh: Use /bin/sh default shell interpreter
5
6checkbashism reports no issues with tzselect.ksh, therefore using
7/bin/sh instead of /bin/bash should be safe and portable across systems
8which don't ship bash ( embedded systems )
9
10Upstream-Status: Pending
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12Cc: Adhemerval Zanella <adhemerval.zanella@linaro.org>
13Cc: Paul Eggert <eggert@cs.ucla.edu>
14---
15 timezone/tzselect.ksh | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/timezone/tzselect.ksh b/timezone/tzselect.ksh
19index 18fce27e24..cc08efb0fb 100755
20--- a/timezone/tzselect.ksh
21+++ b/timezone/tzselect.ksh
22@@ -1,4 +1,4 @@
23-#!/bin/bash
24+#!/bin/sh
25 # Ask the user about the time zone, and output the resulting TZ value to stdout.
26 # Interact with the user via stderr and stdin.
27