From ec100e892af0d33f6631daf3e8f1eec57aa9dd27 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 6 Jun 2003 21:31:07 +0000 Subject: [PATCH] Don't add -dbg to the build dir, it makes the clean command get confused git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20971 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/setup.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/wxPython/setup.py b/wxPython/setup.py index 479ac11048..8ee8148bfd 100755 --- a/wxPython/setup.py +++ b/wxPython/setup.py @@ -423,9 +423,6 @@ elif os.name == 'posix' and sys.platform[:6] == "darwin": WXPLAT = '__WXMAC__' GENDIR = 'mac' - if debug: - BUILD_BASE = BUILD_BASE + '-dbg' - includes = ['src'] defines = [('SWIG_GLOBAL', None), ('HAVE_CONFIG_H', None), @@ -473,9 +470,6 @@ elif os.name == 'posix': else: raise SystemExit, "Unknown WXPORT value: " + WXPORT - if debug: - BUILD_BASE = BUILD_BASE + '-dbg' - includes = ['src'] defines = [('SWIG_GLOBAL', None), ('HAVE_CONFIG_H', None),