diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2007-01-11 22:05:59 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2007-01-11 22:05:59 +0000 |
commit | 2b15cb01564e381c890022ed037bf65ed02e81da (patch) | |
tree | 1d2393b15cc557f7682b4c1813e91505dddb613c | |
parent | a2e3afd76b7ad23aae985b26520a55acf3395bf7 (diff) | |
download | wireshark-2b15cb01564e381c890022ed037bf65ed02e81da.tar.gz wireshark-2b15cb01564e381c890022ed037bf65ed02e81da.tar.bz2 wireshark-2b15cb01564e381c890022ed037bf65ed02e81da.zip |
don't generate zlib1.dll over and over again
svn path=/trunk/; revision=20396
-rw-r--r-- | Makefile.nmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.nmake b/Makefile.nmake index c0742e458b..f10c473be7 100644 --- a/Makefile.nmake +++ b/Makefile.nmake @@ -427,7 +427,7 @@ image:: # therefore compile the zlib dll from source ZLIB_DIR package. # To avoid path problems, copy the zlib sources to a temp dir, # compile and copy the resulting files back to (source) ZLIB_DIR -$(ZLIB_DIR)\zlib1.dll:: +$(ZLIB_DIR)\zlib1.dll: !IF "$(MSVC_VARIANT)" != "MSVC6" xcopy $(ZLIB_DIR) zlib.tmp /D /I /E /Y cd zlib.tmp |