diff mbox

[PATCHv5,1/4] example: ipsec: remove extension from script names

Message ID 1422016461-28976-2-git-send-email-anders.roxell@linaro.org
State New
Headers show

Commit Message

Anders Roxell Jan. 23, 2015, 12:34 p.m. UTC
Remove extension from script names to remove Lintian warnings

Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
Reviewed-by: Steve McIntyre <steve.mcintyre@linaro.org>
---
 example/ipsec/Makefile.am                       | 18 +++++++++---------
 example/ipsec/{run_ah_in.sh => run_ah_in}       |  0
 example/ipsec/{run_ah_out.sh => run_ah_out}     |  0
 example/ipsec/{run_both_in.sh => run_both_in}   |  0
 example/ipsec/{run_both_out.sh => run_both_out} |  0
 example/ipsec/{run_esp_in.sh => run_esp_in}     |  0
 example/ipsec/{run_esp_out.sh => run_esp_out}   |  0
 example/ipsec/{run_live.sh => run_live}         |  0
 example/ipsec/{run_router.sh => run_router}     |  0
 example/ipsec/{run_simple.sh => run_simple}     |  0
 10 files changed, 9 insertions(+), 9 deletions(-)
 rename example/ipsec/{run_ah_in.sh => run_ah_in} (100%)
 rename example/ipsec/{run_ah_out.sh => run_ah_out} (100%)
 rename example/ipsec/{run_both_in.sh => run_both_in} (100%)
 rename example/ipsec/{run_both_out.sh => run_both_out} (100%)
 rename example/ipsec/{run_esp_in.sh => run_esp_in} (100%)
 rename example/ipsec/{run_esp_out.sh => run_esp_out} (100%)
 rename example/ipsec/{run_live.sh => run_live} (100%)
 rename example/ipsec/{run_router.sh => run_router} (100%)
 rename example/ipsec/{run_simple.sh => run_simple} (100%)

diff --git a/example/ipsec/run_ah_in.sh b/example/ipsec/run_ah_in
similarity index 100%
rename from example/ipsec/run_ah_in.sh
rename to example/ipsec/run_ah_in
diff --git a/example/ipsec/run_ah_out.sh b/example/ipsec/run_ah_out
similarity index 100%
rename from example/ipsec/run_ah_out.sh
rename to example/ipsec/run_ah_out
diff --git a/example/ipsec/run_both_in.sh b/example/ipsec/run_both_in
similarity index 100%
rename from example/ipsec/run_both_in.sh
rename to example/ipsec/run_both_in
diff --git a/example/ipsec/run_both_out.sh b/example/ipsec/run_both_out
similarity index 100%
rename from example/ipsec/run_both_out.sh
rename to example/ipsec/run_both_out
diff --git a/example/ipsec/run_esp_in.sh b/example/ipsec/run_esp_in
similarity index 100%
rename from example/ipsec/run_esp_in.sh
rename to example/ipsec/run_esp_in
diff --git a/example/ipsec/run_esp_out.sh b/example/ipsec/run_esp_out
similarity index 100%
rename from example/ipsec/run_esp_out.sh
rename to example/ipsec/run_esp_out
diff --git a/example/ipsec/run_live.sh b/example/ipsec/run_live
similarity index 100%
rename from example/ipsec/run_live.sh
rename to example/ipsec/run_live
diff --git a/example/ipsec/run_router.sh b/example/ipsec/run_router
similarity index 100%
rename from example/ipsec/run_router.sh
rename to example/ipsec/run_router
diff --git a/example/ipsec/run_simple.sh b/example/ipsec/run_simple
similarity index 100%
rename from example/ipsec/run_simple.sh
rename to example/ipsec/run_simple
diff mbox

Patch

diff --git a/example/ipsec/Makefile.am b/example/ipsec/Makefile.am
index 1c6fd32..0194f1b 100644
--- a/example/ipsec/Makefile.am
+++ b/example/ipsec/Makefile.am
@@ -15,15 +15,15 @@  noinst_HEADERS = \
 		  $(top_srcdir)/example/example_debug.h
 
 dist_bin_SCRIPTS = \
-		   $(srcdir)/run_ah_in.sh \
-		   $(srcdir)/run_ah_out.sh \
-		   $(srcdir)/run_both_in.sh \
-		   $(srcdir)/run_both_out.sh \
-		   $(srcdir)/run_esp_in.sh \
-		   $(srcdir)/run_esp_out.sh \
-		   $(srcdir)/run_live.sh \
-		   $(srcdir)/run_router.sh \
-		   $(srcdir)/run_simple.sh
+		   $(srcdir)/run_ah_in \
+		   $(srcdir)/run_ah_out \
+		   $(srcdir)/run_both_in \
+		   $(srcdir)/run_both_out \
+		   $(srcdir)/run_esp_in \
+		   $(srcdir)/run_esp_out \
+		   $(srcdir)/run_live \
+		   $(srcdir)/run_router \
+		   $(srcdir)/run_simple
 
 dist_odp_ipsec_SOURCES = odp_ipsec.c \
 			 odp_ipsec_sa_db.c \