diff mbox series

[libdrm,v2,2/4] *symbols-check: use normal shell over bash

Message ID 20190616132343.26370-2-emil.l.velikov@gmail.com (mailing list archive)
State New, archived
Headers show
Series [libdrm,v2,1/4] meson.build: Fix typo | expand

Commit Message

Emil Velikov June 16, 2019, 1:23 p.m. UTC
None of the tests are bash specific. Tested with bash, zsh, dash, mksh
and ksh.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
---
 amdgpu/amdgpu-symbol-check       | 2 +-
 etnaviv/etnaviv-symbol-check     | 2 +-
 exynos/exynos-symbol-check       | 2 +-
 freedreno/freedreno-symbol-check | 2 +-
 intel/intel-symbol-check         | 2 +-
 libkms/kms-symbol-check          | 2 +-
 nouveau/nouveau-symbol-check     | 2 +-
 omap/omap-symbol-check           | 2 +-
 radeon/radeon-symbol-check       | 2 +-
 tegra/tegra-symbol-check         | 2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)

Comments

Niclas Zeising June 16, 2019, 1:56 p.m. UTC | #1
On 2019-06-16 15:23, Emil Velikov wrote:
> None of the tests are bash specific. Tested with bash, zsh, dash, mksh
> and ksh.
> 
> Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>

Tested-by: Niclas Zeising <zeising@daemonic.se>
Reviewed-by: Niclas Zeising <zeising@daemonic.se>

> ---
>   amdgpu/amdgpu-symbol-check       | 2 +-
>   etnaviv/etnaviv-symbol-check     | 2 +-
>   exynos/exynos-symbol-check       | 2 +-
>   freedreno/freedreno-symbol-check | 2 +-
>   intel/intel-symbol-check         | 2 +-
>   libkms/kms-symbol-check          | 2 +-
>   nouveau/nouveau-symbol-check     | 2 +-
>   omap/omap-symbol-check           | 2 +-
>   radeon/radeon-symbol-check       | 2 +-
>   tegra/tegra-symbol-check         | 2 +-
>   10 files changed, 10 insertions(+), 10 deletions(-)
> 
> diff --git a/amdgpu/amdgpu-symbol-check b/amdgpu/amdgpu-symbol-check
> index 5ce15f46..ea83850d 100755
> --- a/amdgpu/amdgpu-symbol-check
> +++ b/amdgpu/amdgpu-symbol-check
> @@ -1,4 +1,4 @@
> -#!/bin/bash
> +#!/bin/sh
>   
>   set -u
>   
> diff --git a/etnaviv/etnaviv-symbol-check b/etnaviv/etnaviv-symbol-check
> index 18910688..ef4e66f4 100755
> --- a/etnaviv/etnaviv-symbol-check
> +++ b/etnaviv/etnaviv-symbol-check
> @@ -1,4 +1,4 @@
> -#!/bin/bash
> +#!/bin/sh
>   
>   set -u
>   
> diff --git a/exynos/exynos-symbol-check b/exynos/exynos-symbol-check
> index 49d611e6..d2c362e1 100755
> --- a/exynos/exynos-symbol-check
> +++ b/exynos/exynos-symbol-check
> @@ -1,4 +1,4 @@
> -#!/bin/bash
> +#!/bin/sh
>   
>   set -u
>   
> diff --git a/freedreno/freedreno-symbol-check b/freedreno/freedreno-symbol-check
> index 978026c0..987e38fa 100755
> --- a/freedreno/freedreno-symbol-check
> +++ b/freedreno/freedreno-symbol-check
> @@ -1,4 +1,4 @@
> -#!/bin/bash
> +#!/bin/sh
>   
>   set -u
>   
> diff --git a/intel/intel-symbol-check b/intel/intel-symbol-check
> index de377bef..2f355321 100755
> --- a/intel/intel-symbol-check
> +++ b/intel/intel-symbol-check
> @@ -1,4 +1,4 @@
> -#!/bin/bash
> +#!/bin/sh
>   
>   set -u
>   
> diff --git a/libkms/kms-symbol-check b/libkms/kms-symbol-check
> index 30f444f7..7d3426f6 100755
> --- a/libkms/kms-symbol-check
> +++ b/libkms/kms-symbol-check
> @@ -1,4 +1,4 @@
> -#!/bin/bash
> +#!/bin/sh
>   
>   set -u
>   
> diff --git a/nouveau/nouveau-symbol-check b/nouveau/nouveau-symbol-check
> index 6296244c..36703a3e 100755
> --- a/nouveau/nouveau-symbol-check
> +++ b/nouveau/nouveau-symbol-check
> @@ -1,4 +1,4 @@
> -#!/bin/bash
> +#!/bin/sh
>   
>   set -u
>   
> diff --git a/omap/omap-symbol-check b/omap/omap-symbol-check
> index 16da3c40..21522ba0 100755
> --- a/omap/omap-symbol-check
> +++ b/omap/omap-symbol-check
> @@ -1,4 +1,4 @@
> -#!/bin/bash
> +#!/bin/sh
>   
>   set -u
>   
> diff --git a/radeon/radeon-symbol-check b/radeon/radeon-symbol-check
> index da605bb8..7b69f9a4 100755
> --- a/radeon/radeon-symbol-check
> +++ b/radeon/radeon-symbol-check
> @@ -1,4 +1,4 @@
> -#!/bin/bash
> +#!/bin/sh
>   
>   set -u
>   
> diff --git a/tegra/tegra-symbol-check b/tegra/tegra-symbol-check
> index 8539b95b..a74d9749 100755
> --- a/tegra/tegra-symbol-check
> +++ b/tegra/tegra-symbol-check
> @@ -1,4 +1,4 @@
> -#!/bin/bash
> +#!/bin/sh
>   
>   set -u
>   
>
diff mbox series

Patch

diff --git a/amdgpu/amdgpu-symbol-check b/amdgpu/amdgpu-symbol-check
index 5ce15f46..ea83850d 100755
--- a/amdgpu/amdgpu-symbol-check
+++ b/amdgpu/amdgpu-symbol-check
@@ -1,4 +1,4 @@ 
-#!/bin/bash
+#!/bin/sh
 
 set -u
 
diff --git a/etnaviv/etnaviv-symbol-check b/etnaviv/etnaviv-symbol-check
index 18910688..ef4e66f4 100755
--- a/etnaviv/etnaviv-symbol-check
+++ b/etnaviv/etnaviv-symbol-check
@@ -1,4 +1,4 @@ 
-#!/bin/bash
+#!/bin/sh
 
 set -u
 
diff --git a/exynos/exynos-symbol-check b/exynos/exynos-symbol-check
index 49d611e6..d2c362e1 100755
--- a/exynos/exynos-symbol-check
+++ b/exynos/exynos-symbol-check
@@ -1,4 +1,4 @@ 
-#!/bin/bash
+#!/bin/sh
 
 set -u
 
diff --git a/freedreno/freedreno-symbol-check b/freedreno/freedreno-symbol-check
index 978026c0..987e38fa 100755
--- a/freedreno/freedreno-symbol-check
+++ b/freedreno/freedreno-symbol-check
@@ -1,4 +1,4 @@ 
-#!/bin/bash
+#!/bin/sh
 
 set -u
 
diff --git a/intel/intel-symbol-check b/intel/intel-symbol-check
index de377bef..2f355321 100755
--- a/intel/intel-symbol-check
+++ b/intel/intel-symbol-check
@@ -1,4 +1,4 @@ 
-#!/bin/bash
+#!/bin/sh
 
 set -u
 
diff --git a/libkms/kms-symbol-check b/libkms/kms-symbol-check
index 30f444f7..7d3426f6 100755
--- a/libkms/kms-symbol-check
+++ b/libkms/kms-symbol-check
@@ -1,4 +1,4 @@ 
-#!/bin/bash
+#!/bin/sh
 
 set -u
 
diff --git a/nouveau/nouveau-symbol-check b/nouveau/nouveau-symbol-check
index 6296244c..36703a3e 100755
--- a/nouveau/nouveau-symbol-check
+++ b/nouveau/nouveau-symbol-check
@@ -1,4 +1,4 @@ 
-#!/bin/bash
+#!/bin/sh
 
 set -u
 
diff --git a/omap/omap-symbol-check b/omap/omap-symbol-check
index 16da3c40..21522ba0 100755
--- a/omap/omap-symbol-check
+++ b/omap/omap-symbol-check
@@ -1,4 +1,4 @@ 
-#!/bin/bash
+#!/bin/sh
 
 set -u
 
diff --git a/radeon/radeon-symbol-check b/radeon/radeon-symbol-check
index da605bb8..7b69f9a4 100755
--- a/radeon/radeon-symbol-check
+++ b/radeon/radeon-symbol-check
@@ -1,4 +1,4 @@ 
-#!/bin/bash
+#!/bin/sh
 
 set -u
 
diff --git a/tegra/tegra-symbol-check b/tegra/tegra-symbol-check
index 8539b95b..a74d9749 100755
--- a/tegra/tegra-symbol-check
+++ b/tegra/tegra-symbol-check
@@ -1,4 +1,4 @@ 
-#!/bin/bash
+#!/bin/sh
 
 set -u