Re: [PATCH 1/1] tools selftests: Fix 'clean' target with make 3.81

2015-05-14 Thread Arnaldo Carvalho de Melo
Em Thu, May 14, 2015 at 04:16:51PM -0600, Shuah Khan escreveu: > On 05/14/2015 01:55 PM, Arnaldo Carvalho de Melo wrote: > > +++ b/tools/testing/selftests/Makefile > > @@ -27,7 +27,7 @@ TARGETS_HOTPLUG += memory-hotplug > > ifeq (1,$(MAKELEVEL)) > > -undefine LDFLAGS > > +override LDFLAGS = > > o

Re: [PATCH 1/1] tools selftests: Fix 'clean' target with make 3.81

2015-05-14 Thread Shuah Khan
On 05/14/2015 01:55 PM, Arnaldo Carvalho de Melo wrote: > Make 3.81 doesn't have the 'undefine' command, use 'override var =' > instead. > > Tested-by: Shuah Khan > Cc: David Ahern > Cc: Ingo Molnar > Cc: Michael Ellerman > Link: http://lkml.kernel.org/r/20150514151225.gh23...@kernel.org > Si

[PATCH 1/1] tools selftests: Fix 'clean' target with make 3.81

2015-05-14 Thread Arnaldo Carvalho de Melo
Make 3.81 doesn't have the 'undefine' command, use 'override var =' instead. Tested-by: Shuah Khan Cc: David Ahern Cc: Ingo Molnar Cc: Michael Ellerman Link: http://lkml.kernel.org/r/20150514151225.gh23...@kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/testing/selftests/Makefi