From: Olivier Matz Date: Fri, 16 May 2014 08:18:59 +0000 (+0200) Subject: examples/qos_sched: fix makefile X-Git-Tag: spdx-start~10825 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=ea9a59b26c3c86b498337e968ee8f68c4e263614;p=dpdk.git examples/qos_sched: fix makefile The example does not compile as the linker complains about duplicated symbols. Remove -lsched from LDLIBS, it is already present in rte.app.mk and added by the DPDK framework automatically. Signed-off-by: Olivier Matz Acked-by: Thomas Monjalon --- diff --git a/examples/qos_sched/Makefile b/examples/qos_sched/Makefile index b91fe37231..9366efed51 100755 --- a/examples/qos_sched/Makefile +++ b/examples/qos_sched/Makefile @@ -54,6 +54,4 @@ CFLAGS += $(WERROR_FLAGS) CFLAGS_args.o := -D_GNU_SOURCE CFLAGS_cfg_file.o := -D_GNU_SOURCE -LDLIBS += -lrte_sched - include $(RTE_SDK)/mk/rte.extapp.mk