From 0e068253ac6a2993ba6e591709518b65220fd1ee Mon Sep 17 00:00:00 2001
From: Bruce A Downs <bruceadowns@gmail.com>
Date: Mon, 8 Oct 2012 16:26:33 -0600
Subject: [PATCH] kernel: Turn on time-stamping (-N) for wget when getting
 kernel sources

wget downloads new linux-*.sign files and backs up the
existing files as file.1, file.2, etc. This causes false
positives during 'git status' or 'make check'
i.e.
* linux-2.6.38.3.tar.bz2.sign.1
* linux-3.2.7.tar.sign.1
Adding -N causes wget to smartly overwrite as required.
---
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 8a9ed62..1c6b3e0 100644
--- a/Makefile
+++ b/Makefile
@@ -54,8 +54,8 @@ get-sources: $(SRC_FILE)
 
 $(SRC_FILE):
 	@echo -n "Downloading $(URL)... "
-	@wget -q $(URL)
-	@wget -q $(URL_SIGN)
+	@wget -q -N $(URL)
+	@wget -q -N $(URL_SIGN)
 	@echo "OK."
 
 import-keys:
-- 
GitLab