Skip to content

Commit 5639a0d

Browse files
authored
Merge pull request #259 from ONLYOFFICE/fix/makeBugs
Logging makefiles name
2 parents efdd77b + c07fad0 commit 5639a0d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

build.pro

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ OO_BRANDING_SUFFIX = $$(OO_BRANDING)
2323
MAKEFILE=$$join(MAKEFILE, MAKEFILE, "", "$$OO_BRANDING_SUFFIX")
2424
}
2525

26+
message(current_makefile)
27+
message($$MAKEFILE)
28+
2629
CONFIG += ordered
2730

2831
core_windows {

scripts/build.py

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ def make_pro_file(makefiles_dir, pro_file):
6464
if ("1" == config.option("clean")):
6565
base.cmd_and_return_cwd(base.app_make(), ["clean", "-f", makefiles_dir + "/build.makefile_" + file_suff], True)
6666
base.cmd_and_return_cwd(base.app_make(), ["distclean", "-f", makefiles_dir + "/build.makefile_" + file_suff], True)
67+
print("make file: " + makefiles_dir + "/build.makefile_" + file_suff)
6768
base.cmd_and_return_cwd(base.app_make(), ["-f", makefiles_dir + "/build.makefile_" + file_suff])
6869
else:
6970
qmake_bat = []

0 commit comments

Comments
 (0)