summaryrefslogtreecommitdiff
path: root/openembedded
diff options
context:
space:
mode:
authorBotao Sun <botao.sun@linaro.org>2014-10-21 00:04:40 +1100
committerMilosz Wasilewski <milosz.wasilewski@linaro.org>2014-10-22 11:58:51 +0000
commit82f2329aaee7f7356c4f50e3dd83ab8fbc6b78d1 (patch)
tree4041410aa71fbd99a9bf13632d58c7b06f657f43 /openembedded
parent4506f33c53fdb64e6e3874036b871186131960f8 (diff)
sdkhellocxx.sh, sdkhelloc_static.sh and sdkhelloc.sh: POSIX Compliant Update.
This change is to make the test script to be POSIX compliant. Original patch comes from: Lucas Dutra Nunes <ldnunes@ossystems.com.br> Signed-off by: Botao Sun <botao.sun@linaro.org> Change-Id: I6254de0716d22643b0453759cc6d842cfcc5398d
Diffstat (limited to 'openembedded')
-rwxr-xr-xopenembedded/scripts/sdkhelloc.sh12
-rwxr-xr-xopenembedded/scripts/sdkhelloc_static.sh12
-rwxr-xr-xopenembedded/scripts/sdkhellocxx.sh12
3 files changed, 18 insertions, 18 deletions
diff --git a/openembedded/scripts/sdkhelloc.sh b/openembedded/scripts/sdkhelloc.sh
index f34628b..f9eca16 100755
--- a/openembedded/scripts/sdkhelloc.sh
+++ b/openembedded/scripts/sdkhelloc.sh
@@ -1,8 +1,8 @@
-#!/bin/bash
+#!/bin/sh
#
# SDK hello.c test.
#
-# Copyright (C) 2013, Linaro Limited.
+# Copyright (C) 2010 - 2014, Linaro Limited.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -16,11 +16,11 @@
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-#
-# Author: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
-# Author: Milosz Wasilewski <milosz.wasilewski@linaro.org>
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
+# Author:
+# Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
+# Milosz Wasilewski <milosz.wasilewski@linaro.org>
cd
gcc hello.c -o hello > sdkhelloc.log
diff --git a/openembedded/scripts/sdkhelloc_static.sh b/openembedded/scripts/sdkhelloc_static.sh
index 1d5935c..368cb79 100755
--- a/openembedded/scripts/sdkhelloc_static.sh
+++ b/openembedded/scripts/sdkhelloc_static.sh
@@ -1,8 +1,8 @@
-#!/bin/bash
+#!/bin/sh
#
# SDK hello.c static test.
#
-# Copyright (C) 2013, Linaro Limited.
+# Copyright (C) 2010 - 2014, Linaro Limited.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -16,11 +16,11 @@
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-#
-# Author: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
-# Author: Milosz Wasilewski <milosz.wasilewski@linaro.org>
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
+# Author:
+# Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
+# Milosz Wasilewski <milosz.wasilewski@linaro.org>
cd
gcc -static hello.c -o hello > sdkhelloc.log
diff --git a/openembedded/scripts/sdkhellocxx.sh b/openembedded/scripts/sdkhellocxx.sh
index 08b50fd..35ab5eb 100755
--- a/openembedded/scripts/sdkhellocxx.sh
+++ b/openembedded/scripts/sdkhellocxx.sh
@@ -1,8 +1,8 @@
-#!/bin/bash
+#!/bin/sh
#
# SDK hello.cc test.
#
-# Copyright (C) 2013, Linaro Limited.
+# Copyright (C) 2010 - 2014, Linaro Limited.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -16,11 +16,11 @@
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-#
-# Author: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
-# Author: Milosz Wasilewski <milosz.wasilewski@linaro.org>
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
+# Author:
+# Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
+# Milosz Wasilewski <milosz.wasilewski@linaro.org>
cd
g++ hello.cc -o hello > sdkhellocxx.log