From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f172.google.com (mail-we0-f172.google.com [74.125.82.172]) by dpdk.org (Postfix) with ESMTP id BED81B0A8 for ; Fri, 16 May 2014 10:19:06 +0200 (CEST) Received: by mail-we0-f172.google.com with SMTP id k48so2237891wev.3 for ; Fri, 16 May 2014 01:19:14 -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=J2gloix/Pe/qahCurfM81WqFNNxw7KEyaFs76pQrIsc6FNmDdQazVUTITRH7cFFvvp LRAUXvM5JA/E7vUalPYL7zi9BehP1hjf88m3JaxAdCCFfPmPQjvklMcWSFvZdvmTqiSU kj51M23+dF05bKFJp+/Dp6hB6x74xVZdTADX3EDVaZsptGoL95gI/2cY2psMOWi9BM54 yhD8kvOtFmJgtpYMY5lmHFhEu6h1Wm6kSTSwCRaSZzkOWgNGd72zXEDhrHrlbmqSyczF nL/7HtNZIxdl0eM3mEh/RLdMVauE8Zu+fqyVGEhlak8lFuzAI82mJjjp65/eyTx8n70X kUew== X-Gm-Message-State: ALoCoQk0wIKgL7jedqlcEinoYxJVuZ47uUHTmg9P5DZcu0esYeaWR+ZHRaieyzytbC3OUadooCtO X-Received: by 10.180.82.133 with SMTP id i5mr35297265wiy.50.1400228354924; Fri, 16 May 2014 01:19:14 -0700 (PDT) Received: from glumotte.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id dn4sm2047028wib.18.2014.05.16.01.19.13 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 16 May 2014 01:19:14 -0700 (PDT) From: Olivier Matz To: dev@dpdk.org Date: Fri, 16 May 2014 10:18:59 +0200 Message-Id: <1400228341-29334-5-git-send-email-olivier.matz@6wind.com> X-Mailer: git-send-email 1.9.2 In-Reply-To: <1400228341-29334-1-git-send-email-olivier.matz@6wind.com> References: <1400228341-29334-1-git-send-email-olivier.matz@6wind.com> Subject: [dpdk-dev] [PATCH v3 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, 16 May 2014 08:19:07 -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