From ef799c5a386a2c039efb195413fd7795489acb2e Mon Sep 17 00:00:00 2001 From: Dan Mills Date: Thu, 22 May 2008 18:52:52 -0700 Subject: [PATCH] fix build regression in windows from linux fixes --- services/crypto/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/crypto/Makefile b/services/crypto/Makefile index 9fc1f7ec501..d6efcc6d26d 100755 --- a/services/crypto/Makefile +++ b/services/crypto/Makefile @@ -225,11 +225,12 @@ endif $(so_target): $(idl_headers) $(cpp_objects) $(target:=.res) ifeq ($(compiler),msvc) link -OUT:$@ -PDB:$(@:.dll=.pdb) $(cpp_objects) $(target:=.res) $(ldflags) -endif +else ifeq ($(os),Linux) $(cxx) -o $@ $(cppflags) $(ldflags) $(cpp_sources) else $(cxx) -o $@ $(ldflags) $(cpp_objects) +endif endif chmod +x $@ # strip $@