From: "Ulrich Ölmann" <u.oelmann@pengutronix.de>
To: PTXdist Development Mailing List <ptxdist@pengutronix.de>
Cc: "Ulrich Ölmann" <u.oelmann@pengutronix.de>
Subject: [ptxdist] [PATCH 1/5] templates: wizard.sh: remove unused variable
Date: Wed, 5 Jun 2019 01:16:51 +0200 [thread overview]
Message-ID: <20190604231655.13949-2-u.oelmann@pengutronix.de> (raw)
In-Reply-To: <20190604231655.13949-1-u.oelmann@pengutronix.de>
Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
---
rules/templates/src-autoconf-lib/wizard.sh | 2 --
rules/templates/src-autoconf-prog/wizard.sh | 2 --
rules/templates/src-autoconf-proglib/wizard.sh | 2 --
rules/templates/src-cmake-prog/wizard.sh | 2 --
rules/templates/src-linux-driver/wizard.sh | 2 --
rules/templates/src-make-prog/wizard.sh | 2 --
rules/templates/src-qmake-prog/wizard.sh | 2 --
rules/templates/src-stellaris/wizard.sh | 2 --
8 files changed, 16 deletions(-)
diff --git a/rules/templates/src-autoconf-lib/wizard.sh b/rules/templates/src-autoconf-lib/wizard.sh
index 2821bd246fcc..35ef467b033e 100644
--- a/rules/templates/src-autoconf-lib/wizard.sh
+++ b/rules/templates/src-autoconf-lib/wizard.sh
@@ -1,7 +1,5 @@
#!/bin/bash
-HERE=$(pwd)
-
NAME=$1
if [ -z "$NAME" ]; then
echo -n "project name: "
diff --git a/rules/templates/src-autoconf-prog/wizard.sh b/rules/templates/src-autoconf-prog/wizard.sh
index 13b909bd52fc..de63547e5b84 100644
--- a/rules/templates/src-autoconf-prog/wizard.sh
+++ b/rules/templates/src-autoconf-prog/wizard.sh
@@ -1,7 +1,5 @@
#!/bin/bash
-HERE=$(pwd)
-
NAME=$1
if [ -z "$NAME" ]; then
echo -n "project name: "
diff --git a/rules/templates/src-autoconf-proglib/wizard.sh b/rules/templates/src-autoconf-proglib/wizard.sh
index 3f8f4f595281..6951dcd5268c 100644
--- a/rules/templates/src-autoconf-proglib/wizard.sh
+++ b/rules/templates/src-autoconf-proglib/wizard.sh
@@ -1,7 +1,5 @@
#!/bin/bash
-HERE=$(pwd)
-
NAME=$1
if [ -z "$NAME" ]; then
echo -n "project name: "
diff --git a/rules/templates/src-cmake-prog/wizard.sh b/rules/templates/src-cmake-prog/wizard.sh
index 2e5eb5cc523b..20c28f29d85f 100644
--- a/rules/templates/src-cmake-prog/wizard.sh
+++ b/rules/templates/src-cmake-prog/wizard.sh
@@ -1,7 +1,5 @@
#!/bin/bash
-HERE=$(pwd)
-
NAME=$1
if [ -z "$NAME" ]; then
echo -n "project name: "
diff --git a/rules/templates/src-linux-driver/wizard.sh b/rules/templates/src-linux-driver/wizard.sh
index f37fe6b5199c..61d47c415a17 100644
--- a/rules/templates/src-linux-driver/wizard.sh
+++ b/rules/templates/src-linux-driver/wizard.sh
@@ -1,7 +1,5 @@
#!/bin/bash
-HERE=$(pwd)
-
NAME=$1
if [ -z "$NAME" ]; then
echo -n "project name: "
diff --git a/rules/templates/src-make-prog/wizard.sh b/rules/templates/src-make-prog/wizard.sh
index f37fe6b5199c..61d47c415a17 100644
--- a/rules/templates/src-make-prog/wizard.sh
+++ b/rules/templates/src-make-prog/wizard.sh
@@ -1,7 +1,5 @@
#!/bin/bash
-HERE=$(pwd)
-
NAME=$1
if [ -z "$NAME" ]; then
echo -n "project name: "
diff --git a/rules/templates/src-qmake-prog/wizard.sh b/rules/templates/src-qmake-prog/wizard.sh
index c6fe27fee327..1237a5065203 100644
--- a/rules/templates/src-qmake-prog/wizard.sh
+++ b/rules/templates/src-qmake-prog/wizard.sh
@@ -1,7 +1,5 @@
#!/bin/bash
-HERE=$(pwd)
-
NAME=$1
if [ -z "$NAME" ]; then
echo -n "project name: "
diff --git a/rules/templates/src-stellaris/wizard.sh b/rules/templates/src-stellaris/wizard.sh
index 11eac084878f..3b28a15490c3 100644
--- a/rules/templates/src-stellaris/wizard.sh
+++ b/rules/templates/src-stellaris/wizard.sh
@@ -1,7 +1,5 @@
#!/bin/bash
-HERE=$(pwd)
-
NAME=$1
if [ -z "$NAME" ]; then
echo -n "project name: "
--
2.20.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
next prev parent reply other threads:[~2019-06-04 23:16 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-04 23:16 [ptxdist] [PATCH 0/5] Clean up templates and add src-meson-prog template Ulrich Ölmann
2019-06-04 23:16 ` Ulrich Ölmann [this message]
2019-06-04 23:16 ` [ptxdist] [PATCH 2/5] templates: wizard.sh: use neat parameter expansion and prevent word splitting Ulrich Ölmann
2019-06-04 23:16 ` [ptxdist] [PATCH 3/5] templates: wizard.sh: use only one sed process Ulrich Ölmann
2019-06-04 23:16 ` [ptxdist] [PATCH 4/5] templates: add src-meson-prog template Ulrich Ölmann
2019-06-04 23:16 ` [ptxdist] [PATCH 5/5] templates: src-meson-prog: introduce version into template project Ulrich Ölmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190604231655.13949-2-u.oelmann@pengutronix.de \
--to=u.oelmann@pengutronix.de \
--cc=ptxdist@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox