From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f181.google.com (mail-we0-f181.google.com [74.125.82.181]) by dpdk.org (Postfix) with ESMTP id 6E0F1AFDD for ; Fri, 9 May 2014 12:32:22 +0200 (CEST) Received: by mail-we0-f181.google.com with SMTP id w61so3801059wes.12 for ; Fri, 09 May 2014 03:32:28 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=Hw6L49f2eGXeUhd9ENW7yiSyBZQsMtK24YV9yKGMhwk=; b=dFHrNcocAfrM5CV4CgIqdeRtzd53mNliRGeiVI6fLMXBtNsTq6ETV+EuywK1iAfOo/ FdC+y3gNDVD36CjE6L51qE05X5tzIPPSwWxJ8Ib8cLPCFdexpof9MVPnvc/jlQs82pgg wl+z35oTmU/xgfMPSZBDG4kv3Bae61JXpXSkwi5aBbp9pLqPVNrLDHs85J9Bt+2F8r4p yylNojvVEcEiGFpP0EnPGoC/6Rq8Pb2gcOH2NC2JP/Dvw0kRrPWnDjqZ8iXShFnJNKJS oXGMvEmqkGyVSGV8m0piAT1LCIYAk8tWZEdIKKFGKVL1YFSPc3IgSu82S1kra18qk595 qE9g== X-Gm-Message-State: ALoCoQmFvo4vtnDwGwnkwgKzMmg40PO9zOMh/zQH+nf89iii/t/dTXEDFLlifqx+trZwKaDc3UpG X-Received: by 10.180.82.133 with SMTP id i5mr2711844wiy.50.1399631548828; Fri, 09 May 2014 03:32:28 -0700 (PDT) Received: from glumotte.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id by1sm4936710wjc.26.2014.05.09.03.32.26 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 09 May 2014 03:32:27 -0700 (PDT) From: Olivier Matz To: dev@dpdk.org Date: Fri, 9 May 2014 12:32:08 +0200 Message-Id: <1399631530-24956-5-git-send-email-olivier.matz@6wind.com> X-Mailer: git-send-email 1.9.2 In-Reply-To: <1399631530-24956-1-git-send-email-olivier.matz@6wind.com> References: <1399631530-24956-1-git-send-email-olivier.matz@6wind.com> Subject: [dpdk-dev] [PATCH v2 4/6] examples: fix qos_sched makefile X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 May 2014 10:32:22 -0000 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 --- examples/qos_sched/Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/qos_sched/Makefile b/examples/qos_sched/Makefile index b91fe37..9366efe 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 -- 1.9.2