From 8121a5e05fc7a8d92b6bc84f0d2847042854340f Mon Sep 17 00:00:00 2001 From: Jay Larson Date: Mon, 20 Feb 2017 13:35:25 -0600 Subject: [PATCH] The following change was made to Makefile: * corrected snap version string --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cedfe68..822ea09 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ export DEPENDS = glibc export ARCH = x86_64 export URL = https://www.isc.org/ -SNAPVER = 2 +SNAPVER = 3 PWD := $(shell pwd) ROOT := $(PWD)/ROOT @@ -20,7 +20,7 @@ TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n') SRCDIR := $(shell tar -tf $(ARCHIVE)|head -1|sed 's/\/.*//') PATCHDIR := $(PWD)/SRC/patches export VERSION := $(shell echo $(SRCDIR)|egrep -o '\-[0-9].*'| \ - sed 's/^-//')$(SNAPVER) + sed 's/^-//')-$(SNAPVER) DHCLIENT := $(PWD)/dhclient export DHCLIENTROOT := $(DHCLIENT)/ROOT