Skip to content

Commit 41404bf

Browse files
committed
Also silence copy here
1 parent 4807b16 commit 41404bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

win32/build/confutils.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -943,10 +943,10 @@ function generate_version_info_manifest(makefiletarget)
943943

944944
if (MODE_PHPIZE) {
945945
MFO.WriteLine("$(BUILD_DIR)\\" + manifest_name + ": " + PHP_DIR + "\\build\\default.manifest");
946-
MFO.WriteLine("\t@copy " + PHP_DIR + "\\build\\default.manifest $(BUILD_DIR)\\" + makefiletarget + ".manifest");
946+
MFO.WriteLine("\t@copy " + PHP_DIR + "\\build\\default.manifest $(BUILD_DIR)\\" + makefiletarget + ".manifest >nul");
947947
} else {
948948
MFO.WriteLine("$(BUILD_DIR)\\" + manifest_name + ": win32\\build\\default.manifest");
949-
MFO.WriteLine("\t@copy $(PHP_SRC_DIR)\\win32\\build\\default.manifest $(BUILD_DIR)\\" + makefiletarget + ".manifest");
949+
MFO.WriteLine("\t@copy $(PHP_SRC_DIR)\\win32\\build\\default.manifest $(BUILD_DIR)\\" + makefiletarget + ".manifest >nul");
950950
}
951951

952952
return manifest_name;

0 commit comments

Comments
 (0)