From 0c4f5a751d375daebbed9b0296ed1ad86315455b Mon Sep 17 00:00:00 2001 From: Stijn Segers Date: Thu, 29 Sep 2016 21:11:42 +0200 Subject: [PATCH] mii-tool: fix variable being declared too early Signed-off-by: Stijn Segers --- net/mii-tool/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/mii-tool/Makefile b/net/mii-tool/Makefile index d12da09b70..714837e372 100644 --- a/net/mii-tool/Makefile +++ b/net/mii-tool/Makefile @@ -10,12 +10,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mii-tool PKG_VERSION=2016-07-10-$(PKG_SOURCE_VERSION) -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_LICENSE:=GPL-2.0 PKG_MAINTAINER:=Stijn Segers PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=git://git.code.sf.net/p/net-tools/code -PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_SOURCE_SUBDIR=$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE_VERSION:=115f1af2494ded1fcd21c8419d5e289bc4df380f PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -- 2.30.2