File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -55,14 +55,14 @@ endif
55
55
# Create a directory
56
56
# $(1) is the directory
57
57
define PREPARE_DIR
58
- @$(Q )$(call E, install : $(1 ) )
58
+ @$(Q )$(call E, prepare : $(1 ) )
59
59
$(Q )$(PREPARE_DIR_CMD ) $(1 )
60
60
endef
61
61
62
62
# Copy an executable
63
63
# $(1) is the filename/libname-glob
64
64
define PREPARE_BIN
65
- @$(call E, install : $(PREPARE_DEST_BIN_DIR ) /$(1 ) )
65
+ @$(call E, prepare : $(PREPARE_DEST_BIN_DIR ) /$(1 ) )
66
66
$(Q )$(PREPARE_BIN_CMD ) $(PREPARE_SOURCE_BIN_DIR ) /$(1 ) $(PREPARE_DEST_BIN_DIR ) /$(1 )
67
67
endef
68
68
75
75
# problem. I'm sorry, just don't remove the $(nop), alright?
76
76
define PREPARE_LIB
77
77
$(nop )
78
- @$(call E, install : $(PREPARE_WORKING_DEST_LIB_DIR ) /$(1 ) )
78
+ @$(call E, prepare : $(PREPARE_WORKING_DEST_LIB_DIR ) /$(1 ) )
79
79
$(Q ) LIB_NAME="$(notdir $(lastword $(wildcard $(PREPARE_WORKING_SOURCE_LIB_DIR ) /$(1 ) ) ) ) "; \
80
80
MATCHES="$(filter-out % $(notdir $(lastword $(wildcard $(PREPARE_WORKING_SOURCE_LIB_DIR ) /$(1 ) ) ) ) ,\
81
81
$(wildcard $(PREPARE_WORKING_DEST_LIB_DIR ) /$(1 ) ) ) "; \
91
91
# Copy a man page
92
92
# $(1) - source dir
93
93
define PREPARE_MAN
94
- @$(call E, install : $(PREPARE_DEST_MAN_DIR ) /$(1 ) )
94
+ @$(call E, prepare : $(PREPARE_DEST_MAN_DIR ) /$(1 ) )
95
95
$(Q )$(PREPARE_MAN_CMD ) $(PREPARE_SOURCE_MAN_DIR ) /$(1 ) $(PREPARE_DEST_MAN_DIR ) /$(1 )
96
96
endef
97
97
You can’t perform that action at this time.
0 commit comments