From 85f7ec579ec34fdcfd5d7cc827b74249742cb410 Mon Sep 17 00:00:00 2001
From: Vadim Zeitlin <vadim@wxwidgets.org>
Date: Tue, 2 Oct 2001 16:28:14 +0000
Subject: [PATCH] fix for using debug extra libs in release build and vice
 versa

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11785 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---
 distrib/msw/tmake/vc6app.t | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/distrib/msw/tmake/vc6app.t b/distrib/msw/tmake/vc6app.t
index 7574ec20ef..5caf700673 100644
--- a/distrib/msw/tmake/vc6app.t
+++ b/distrib/msw/tmake/vc6app.t
@@ -125,8 +125,8 @@
 	    $EXTRA_LIBS.=" png jpeg tiff";
 	}
 	foreach ( split(/ /, $EXTRA_LIBS) ) {
-	    $DEBUG_EXTRA_LIBS .= "$WXDIR\\lib\\$_.lib ";
-	    $RELEASE_EXTRA_LIBS .= "$WXDIR\\lib\\$_" . "d.lib ";
+	    $RELEASE_EXTRA_LIBS .= "$WXDIR\\lib\\$_.lib ";
+	    $DEBUG_EXTRA_LIBS .= "$WXDIR\\lib\\$_" . "d.lib ";
 	}
 
 	#! the wxWin lib name itself is composed from the basename with various
-- 
2.47.2