summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorStephen Hemminger <stephen@networkplumber.org>2019-06-12 08:48:33 -0700
committerStephen Hemminger <stephen@networkplumber.org>2019-06-12 08:48:33 -0700
commitb0a09ace394c274d8adc90875dc64ef21a17564f (patch)
tree72e9cdcaa8447a6848f58fd9d7d2506d20e09c40 /testsuite
parentc934da8aaacb015e08ac8abbbd0aa696a7ef19fd (diff)
downloadiproute2-b0a09ace394c274d8adc90875dc64ef21a17564f.tar.gz
testsuite: intent if/else in Makefile
Indent both arms of if/else equally. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/Makefile b/testsuite/Makefile
index 7f247bbc..d5408646 100644
--- a/testsuite/Makefile
+++ b/testsuite/Makefile
@@ -18,9 +18,9 @@ KENVFN := $(shell mktemp /tmp/tc_testkenv.XXXXXX)
ifneq (,$(wildcard /proc/config.gz))
KCPATH := /proc/config.gz
else
-KVER := $(shell uname -r)
-KCPATHS := /lib/modules/$(KVER)/config /boot/config-$(KVER)
-KCPATH := $(firstword $(wildcard $(KCPATHS)))
+ KVER := $(shell uname -r)
+ KCPATHS := /lib/modules/$(KVER)/config /boot/config-$(KVER)
+ KCPATH := $(firstword $(wildcard $(KCPATHS)))
endif
.PHONY: compile listtests alltests configure $(TESTS)