make clean - not working on win32
"Dmitri Khokhlov" <[email protected]> Tue, 18 Jul 2006 14:07:07 -0400
| Newsgroups | gmane.comp.corba.omniorb.devel |
|---|---|
| Message-ID | <[email protected]> |
Hi,
Target "clean" is not working on win32 in omniORB-4.1.0-beta2. Here is a
patch which fixes this issue:
=====================================================================
--- mk/win32.mk 2006-01-19 08:44:28.000000000 -0800
+++ mk/win32.new 2006-07-18 10:23:09.862297500 -0700
@@ -376,7 +376,7 @@
define CleanSharedLibrary
( set -x; \
$(RM) $${dir:-.}/*.dll $${dir:-.}/*.lib $${dir:-.}/*.exp
$${dir:-.}/*.def \
- $${dir:-.}/*.dll.manifest $${dir:-.}/*.ilk
+ $${dir:-.}/*.dll.manifest $${dir:-.}/*.ilk $${dir:-.}/*.pdb)
endef
# Pattern rules to build objects files for static and shared library
and the
=====================================================================
Regards,
Dmitri