summaryrefslogtreecommitdiff
path: root/Cmds
diff options
context:
space:
mode:
Diffstat (limited to 'Cmds')
-rw-r--r--Cmds9
1 files changed, 4 insertions, 5 deletions
diff --git a/Cmds b/Cmds
index aa8c0a2..fdb80ea 100644
--- a/Cmds
+++ b/Cmds
@@ -5,14 +5,13 @@ Q = @
SHELL := $(shell if [ -x /bin/bash ]; then echo /bin/bash; else echo /bin/sh; fi)
# Compiler related stuff
-CC = gcc
-LDQ = $(Q)echo -e " LD\t$@" && $(CCACHE) $(CROSS_COMPILE)$(CC)
-CCNQ = $(CCACHE) $(CROSS_COMPILE)$(CC)
+LDQ = $(Q)echo -e " LD\t$@" && $(CCACHE) $(CC)
+CCNQ = $(CCACHE) $(CC)
CCQ = $(Q)echo -e " CC\t$<" && $(CCNQ)
ifeq ($(DEBUG), 1)
- STRIP = $(Q)true
+ STRIPQ = $(Q)true
else
- STRIP = $(Q)echo -e " STRIP\t$@" && $(CROSS_COMPILE)strip
+ STRIPQ = $(Q)echo -e " STRIP\t$@" && $(STRIP)
endif
# sparse related
linus' of git://git.kernel.dk/linux-block: Revert "sd: remove __data_len hack for WRITE SAME" nvme-fc: use blk_rq_nr_phys_segments nvmet-rdma: Fix missing dma sync to nvme data structures nvmet: Call fatal_error from keep-alive timout expiration nvmet: cancel fatal error and flush async work before free controller nvmet: delete controllers deletion upon subsystem release nvmet_fc: correct logic in disconnect queue LS handling block: fix use after free in __blkdev_direct_IO xen-blkfront: correct maximum segment accounting xen-blkfront: feature flags handling adjustments
Diffstat (limited to 'tools/testing/selftests/efivarfs')