aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Uvarov <maxim.uvarov@linaro.org>2014-06-05 15:05:28 +0400
committerMaxim Uvarov <maxim.uvarov@linaro.org>2014-06-09 21:00:45 +0400
commita65917065da23a970f10b591f317c362e50dc36b (patch)
treeb078dddbc76b843e764567b7c3374ee02b09b79e
parentfe415d57f145477d759773a029f6e71ef73dc2a9 (diff)
add odp prefix to l2fwd
All odp applications have odp_ prefix. Adding the same prefix to l2fwd. Reviewed-by: Anders Roxell <anders.roxell@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
-rw-r--r--.gitignore2
-rw-r--r--test/l2fwd/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index d45b37f4e..6f5f0aba3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,4 +17,4 @@ test/api_test/odp_ring
test/api_test/odp_timer
test/timer/odp_timer_test
test/generator/odp_generator
-test/l2fwd/l2fwd
+test/l2fwd/odp_l2fwd
diff --git a/test/l2fwd/Makefile b/test/l2fwd/Makefile
index 3435caaeb..7c072c39a 100644
--- a/test/l2fwd/Makefile
+++ b/test/l2fwd/Makefile
@@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-3-Clause
ODP_ROOT = ../..
-ODP_APP = l2fwd
+ODP_APP = odp_l2fwd
include $(ODP_ROOT)/Makefile.inc
include ../Makefile.inc