diff options
author | Wez Furlong <wez@php.net> | 2005-02-06 23:23:05 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2005-02-06 23:23:05 +0000 |
commit | 668740aadafefbac0463fcae0ef6c5785e2c7eb3 (patch) | |
tree | e568287d5c659073277aa9e1d0b548a32ccc3d12 /win32 | |
parent | d134fb2a8db3957bb487461138e49989f50631b5 (diff) | |
download | php-git-668740aadafefbac0463fcae0ef6c5785e2c7eb3.tar.gz |
even less noise
Diffstat (limited to 'win32')
-rw-r--r-- | win32/build/Makefile | 2 | ||||
-rw-r--r-- | win32/build/confutils.js | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/win32/build/Makefile b/win32/build/Makefile index 30662621d4..7fec2306ae 100644 --- a/win32/build/Makefile +++ b/win32/build/Makefile @@ -65,7 +65,7 @@ $(PHPDLL_RES): win32\build\template.rc win32\build\template.rc $(BUILD_DIR)\$(PHPDLL): generated_files $(PHPDEF) $(PHP_GLOBAL_OBJS) $(STATIC_EXT_OBJS) $(PHPDLL_RES) $(MCFILE) - $(LD) /out:$(BUILD_DIR)\$(PHPDLL) $(PHP_LDFLAGS) $(LDFLAGS) $(STATIC_EXT_LDFLAGS) $(PHP_GLOBAL_OBJS) $(STATIC_EXT_OBJS) $(STATIC_EXT_LIBS) $(LIBS) $(PHPDLL_RES) + @$(LD) /out:$(BUILD_DIR)\$(PHPDLL) $(PHP_LDFLAGS) $(LDFLAGS) $(STATIC_EXT_LDFLAGS) $(PHP_GLOBAL_OBJS) $(STATIC_EXT_OBJS) $(STATIC_EXT_LIBS) $(LIBS) $(PHPDLL_RES) $(BUILD_DIR)\$(PHPLIB): $(BUILD_DIR)\$(PHPDLL) diff --git a/win32/build/confutils.js b/win32/build/confutils.js index db8bf6361d..1f3a501294 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -// $Id: confutils.js,v 1.52 2005-02-06 22:48:35 wez Exp $ +// $Id: confutils.js,v 1.53 2005-02-06 23:23:05 wez Exp $ var STDOUT = WScript.StdOut; var STDERR = WScript.StdErr; @@ -870,7 +870,7 @@ function SAPI(sapiname, file_list, makefiletarget, cflags) var SAPI = sapiname.toUpperCase(); var ldflags; var resname; - var ld = "$(LD)"; + var ld = "@$(LD)"; STDOUT.WriteLine("Enabling SAPI " + configure_module_dirname); @@ -1010,7 +1010,7 @@ function EXTENSION(extname, file_list, shared, cflags, dllname, obj_dir) var libname = dllname.substring(0, dllname.length-4) + ".lib"; var resname = generate_version_info_resource(dllname, configure_module_dirname); - var ld = "$(LD)"; + var ld = "@$(LD)"; MFO.WriteLine("$(BUILD_DIR)\\" + dllname + " $(BUILD_DIR)\\" + libname + ": $(DEPS_" + EXT + ") $(" + EXT + "_GLOBAL_OBJS) $(BUILD_DIR)\\$(PHPLIB) $(BUILD_DIR)\\" + resname); MFO.WriteLine("\t" + ld + " /out:$(BUILD_DIR)\\" + dllname + " $(DLL_LDFLAGS) $(LDFLAGS) $(LDFLAGS_" + EXT + ") $(" + EXT + "_GLOBAL_OBJS) $(BUILD_DIR)\\$(PHPLIB) $(LIBS_" + EXT + ") $(LIBS) $(BUILD_DIR)\\" + resname); |