From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f47.google.com (mail-wg0-f47.google.com [74.125.82.47]) by dpdk.org (Postfix) with ESMTP id B0678594A for ; Fri, 25 Apr 2014 14:01:05 +0200 (CEST) Received: by mail-wg0-f47.google.com with SMTP id n12so294238wgh.30 for ; Fri, 25 Apr 2014 05:01:08 -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=LFt0e/Vb5x2tkQlydS5Td7z0N3/1Feokabr8UWVRiA0mG247P05ZlZo83K64wMwY3f dh6ouqd1uswhBAKaYiow2I9DX5F5lrmPyAKXIYL3Kib/sK9+whHBsp0RkCtRA8RVy+UE Mnny2rnb0/fiRwgAODFNV3uyppiysQ/eYnCtiDzs3VbJYpu/aXroBTrVtAdtWBumcVx6 DAVZAgeLzaFeFPWXsDtcvtVmjwr67JqAEciDVz6jqTz3KFrSlj8te2bxiygZq6JOFj+o IH7PhVWCJ7k537DiM+RJAoUzeiyj/c4P9XC9tsesnB+s/SMq7BhvaUggeQzOoU4HDG/V EZcA== X-Gm-Message-State: ALoCoQnFurkvyxSe9N6prIWe/ml6fpF2Hd7VPCHZUG9FGq3BH6Gb2q3n05N/E84h56V02HyDzlnF X-Received: by 10.194.188.41 with SMTP id fx9mr1765021wjc.56.1398427268396; Fri, 25 Apr 2014 05:01:08 -0700 (PDT) Received: from glumotte.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id nb8sm5460990wic.18.2014.04.25.05.01.06 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 25 Apr 2014 05:01:07 -0700 (PDT) From: Olivier Matz To: dev@dpdk.org Date: Fri, 25 Apr 2014 14:00:48 +0200 Message-Id: <1398427249-15418-5-git-send-email-olivier.matz@6wind.com> X-Mailer: git-send-email 1.9.2 In-Reply-To: <1398427249-15418-1-git-send-email-olivier.matz@6wind.com> References: <1398427249-15418-1-git-send-email-olivier.matz@6wind.com> Subject: [dpdk-dev] [PATCH 4/5] 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, 25 Apr 2014 12:01:06 -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