mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
6172d4b590
With hat: portmgr Sponsored by: Absolight
23 lines
582 B
Plaintext
23 lines
582 B
Plaintext
--- build/make/Makefile.orig
|
|
+++ build/make/Makefile
|
|
@@ -158,7 +158,7 @@
|
|
$(qexec)$(AS) $(ASFLAGS) -o $@ $<
|
|
|
|
.PRECIOUS: %.c.S
|
|
-%.c.S: CFLAGS += -DINLINE_ASM
|
|
+%.c.S: CFLAGS += -DINLINE_ASM $(CLANG_NO_IAS)
|
|
$(BUILD_PFX)%.c.S: %.c
|
|
$(if $(quiet),@echo " [GEN] $@")
|
|
$(qexec)$(CC) -S $(CFLAGS) -o $@ $<
|
|
@@ -230,8 +230,8 @@
|
|
define install_map_template
|
|
$(DIST_DIR)/$(1): $(2)
|
|
$(if $(quiet),@echo " [INSTALL] $$@")
|
|
- $(qexec)mkdir -p $$(dir $$@)
|
|
- $(qexec)cp -p $$< $$@
|
|
+ $(qexec)install -d $$(dir $$@)
|
|
+ $(qexec)install -p $$< $$(dir $$@)
|
|
endef
|
|
|
|
define archive_template
|