From: Linus Torvalds Date: Mon, 12 Feb 2007 23:05:15 +0000 (-0800) Subject: don't use 'localversion*' files twice X-Git-Tag: v2.6.21-rc1~274^2~2 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd19e44f449f7e2e58d42d7bb6813e2292c38fba;p=linux-2.6 don't use 'localversion*' files twice Since we look in both source and object directories for localversion* files, we accidentally ended up getting them twice. Use 'sort -u' to avoid that. Reported-by: Tony Luck Signed-off-by: Linus Torvalds --- diff --git a/Makefile b/Makefile index cdeda68cf2..7e4968fb21 100644 --- a/Makefile +++ b/Makefile @@ -789,7 +789,7 @@ $(vmlinux-dirs): prepare scripts pattern = ".*/localversion[^~]*" string = $(shell cat /dev/null \ - `find $(objtree) $(srctree) -maxdepth 1 -regex $(pattern) | sort`) + `find $(objtree) $(srctree) -maxdepth 1 -regex $(pattern) | sort -u`) localver = $(subst $(space),, $(string) \ $(patsubst "%",%,$(CONFIG_LOCALVERSION)))