Message ID | 1402062436-7962-1-git-send-email-maxim.uvarov@linaro.org |
---|---|
State | Accepted |
Commit | a65917065da23a970f10b591f317c362e50dc36b |
Headers | show |
On 2014-06-06 17:47, Maxim Uvarov wrote: > All odp applications have odp_ prefix. Adding the same prefix to l2fwd. > > Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> Reviewed-by: Anders Roxell <anders.roxell@linaro.org> > --- > v2: add fix to .gitignore > > .gitignore | 2 +- > test/l2fwd/Makefile | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/.gitignore b/.gitignore > index d45b37f..6f5f0ab 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 3435caa..7c072c3 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 > -- > 1.8.5.1.163.gd7aced9 > > > _______________________________________________ > lng-odp mailing list > lng-odp@lists.linaro.org > http://lists.linaro.org/mailman/listinfo/lng-odp
diff --git a/.gitignore b/.gitignore index d45b37f..6f5f0ab 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 3435caa..7c072c3 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
All odp applications have odp_ prefix. Adding the same prefix to l2fwd. Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> --- v2: add fix to .gitignore .gitignore | 2 +- test/l2fwd/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)