Skip to content

Commit b2831c1

Browse files
windows is a garbage os
Signed-off-by: mateoconlechuga <matthewwaltzis@gmail.com>
1 parent c6ceaa2 commit b2831c1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/ce/makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
include $(CURDIR)/../common.mk
1818

1919
WILDCARD_SRC = $(wildcard *.src)
20-
WILDCARD_H = $(wildcard $(call NATIVEPATH,include/*.h))
21-
WILDCARD_HW_H = $(wildcard $(call NATIVEPATH,include/sys/*.h))
22-
WILDCARD_TI_H = $(wildcard $(call NATIVEPATH,include/ti/*.h)) $(call NATIVEPATH,include/ti/real)
20+
WILDCARD_H = $(wildcard include/*.h)
21+
WILDCARD_HW_H = $(wildcard include/sys/*.h)
22+
WILDCARD_TI_H = $(wildcard include/ti/*.h) include/ti/real
2323

2424
all:
2525

@@ -28,9 +28,9 @@ install: $(addprefix install-,$(TARGETS))
2828
$(Q)$(call MKDIR,$(INSTALL_TI_H))
2929
$(Q)$(call MKDIR,$(INSTALL_HW_H))
3030
$(Q)$(call MKDIR,$(INSTALL_CE))
31-
$(Q)$(call COPY,$(WILDCARD_H),$(INSTALL_H))
32-
$(Q)$(call COPY,$(WILDCARD_HW_H),$(INSTALL_HW_H))
33-
$(Q)$(call COPY,$(WILDCARD_TI_H),$(INSTALL_TI_H))
31+
$(Q)$(call COPY,$(foreach file,$(call NATIVEPATH,$(WILDCARD_H)),$(call QUOTE_ARG,$(file))),$(INSTALL_H))
32+
$(Q)$(call COPY,$(foreach file,$(call NATIVEPATH,$(WILDCARD_HW_H)),$(call QUOTE_ARG,$(file))),$(INSTALL_HW_H))
33+
$(Q)$(call COPY,$(foreach file,$(call NATIVEPATH,$(WILDCARD_TI_H)),$(call QUOTE_ARG,$(file))),$(INSTALL_TI_H))
3434
$(Q)$(call COPY,$(WILDCARD_SRC),$(INSTALL_CE))
3535

3636
clean:

0 commit comments

Comments
 (0)