File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -19,18 +19,21 @@ RPL_AWK_SRC=$(MISC)\def_awk.c
1919RPL_GREP=$(FB_GEN_DIR)\isc_grep.exe
2020RPL_GREP_SRC=$(MISC)\isc_grep.c
2121# These utils are platform and build independent, use fixed temporary dir.
22+ UTL_TMP_DIR=$(FB_TEMP_DIR)\Release\misc
2223
2324updateCloopInterfaces: $(API_H_FILE) $(API_PAS_FILE)
2425
26+ $(UTL_TMP_DIR):
27+ -mkdir $@ 2>nul
2528
2629$(API_H_FILE): $(IDL_FILE)
2730 $(CLOOP) $(IDL_FILE) c++ $@ IDL_FB_INTERFACES_H Firebird I
2831
29- $(RPL_AWK): $(RPL_AWK_SRC)
32+ $(RPL_AWK): $(RPL_AWK_SRC) $(UTL_TMP_DIR)
3033# NMAKE strips trailing backslash during macro substitution that's why it is here and not in definition.
3134 $(CPP) /Fe$@ /Fo$(UTL_TMP_DIR)\ $(RPL_AWK_SRC)
3235
33- $(RPL_GREP): $(RPL_GREP_SRC)
36+ $(RPL_GREP): $(RPL_GREP_SRC) $(UTL_TMP_DIR)
3437 $(CPP) /Fe$@ /Fo$(UTL_TMP_DIR)\ $(RPL_GREP_SRC)
3538
3639$(FB_GEN_DIR)\iberror.pas: $(ERR_CONSTS_PAS) $(FB_ROOT_PATH)\src\include\firebird\impl\msg\*.h
You can’t perform that action at this time.
0 commit comments