Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'acpi-5.16-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull ACPI fix from Rafael Wysocki:
"Create the output directory for the ACPI tools during build if it has
not been present before and prevent the compilation from failing in
that case (Chen Yu)"

* tag 'acpi-5.16-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
ACPI: tools: Fix compilation when output directory is not present

+2
+1
tools/power/acpi/Makefile.config
··· 69 69 ACPICA_INCLUDE := $(srctree)/../../../drivers/acpi/acpica 70 70 CFLAGS += -D_LINUX -I$(KERNEL_INCLUDE) -I$(ACPICA_INCLUDE) 71 71 CFLAGS += $(WARNINGS) 72 + MKDIR = mkdir 72 73 73 74 ifeq ($(strip $(V)),false) 74 75 QUIET=@
+1
tools/power/acpi/Makefile.rules
··· 21 21 22 22 $(objdir)%.o: %.c $(KERNEL_INCLUDE) 23 23 $(ECHO) " CC " $(subst $(OUTPUT),,$@) 24 + $(QUIET) $(MKDIR) -p $(objdir) 2>/dev/null 24 25 $(QUIET) $(CC) -c $(CFLAGS) -o $@ $< 25 26 26 27 all: $(OUTPUT)$(TOOL)