From patchwork Sun Oct 4 17:58:49 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Baptiste Jonglez X-Patchwork-Id: 526189 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from arrakis.dune.hu (arrakis.dune.hu [78.24.191.176]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 0DDF71402B6 for ; Mon, 5 Oct 2015 04:59:32 +1100 (AEDT) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id CBE2928BC2C; Sun, 4 Oct 2015 19:57:55 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on arrakis.dune.hu X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00 autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 68FA928BC0D for ; Sun, 4 Oct 2015 19:57:48 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_FROM_MX=-3.1; rate: -7.6 Received: from mejis.polyno.me (second.degre.polyno.me [91.224.149.26]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Sun, 4 Oct 2015 19:57:47 +0200 (CEST) Received: from [172.23.184.98] (helo=tuxmachine.lan) by mejis.polyno.me with esmtp (Exim 4.80) (envelope-from ) id 1ZinZ1-0004Gp-4H; Sun, 04 Oct 2015 19:59:11 +0200 From: Baptiste Jonglez To: openwrt-devel@lists.openwrt.org Date: Sun, 4 Oct 2015 19:58:49 +0200 Message-Id: <1443981529-27234-1-git-send-email-baptiste@bitsofnetworks.org> X-Mailer: git-send-email 2.5.1 Cc: Baptiste Jonglez Subject: [OpenWrt-Devel] [PATCH] libnl: Fix URL X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: OpenWrt Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" From: Baptiste Jonglez Signed-off-by: Baptiste Jonglez --- package/libs/libnl/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/libs/libnl/Makefile b/package/libs/libnl/Makefile index 241e9a7..c5873fd 100644 --- a/package/libs/libnl/Makefile +++ b/package/libs/libnl/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libnl PKG_VERSION:=3.2.21 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.infradead.org/~tgr/libnl/files/ @@ -21,7 +21,7 @@ include $(INCLUDE_DIR)/package.mk define Package/libnl/default SECTION:=libs CATEGORY:=Libraries - URL:=http://people.suug.ch/~tgr/libnl/ + URL:=http://www.infradead.org/~tgr/libnl/ endef define Package/libnl-core