From: stevenknight Date: Thu, 29 May 2003 02:23:59 +0000 (+0000) Subject: Fix reported man page bugs. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5a7b744c13fa904c646912d34abeb35edef2ce7d;p=scons.git Fix reported man page bugs. git-svn-id: http://scons.tigris.org/svn/scons/trunk@699 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 53c6cb0d..1a1b81f4 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -2646,6 +2646,16 @@ General options passed to the linker. .IP LINKCOM The command line used to link object files into an executable. +.IP no_import_lib +When set to non-zero, +suppresses creation of a corresponding Win32 static import lib by the +.B SharedLibrary +builder when used with +MinGW or Microsoft Visual Studio. +This also suppresses creation +of an export (.exp) file +when using Microsoft Visual Studio. + .IP OBJPREFIX The prefix used for (static) object file names. @@ -3544,19 +3554,6 @@ specify a build directory in conjunction with calling a subsidiary SConscript file.) -.TP -.RI AddPostAction ( target, action ) -Arranges for the specified -.I action -to be performed -after the specified -.I target -has been built. -The specified action(s) may be -an Action object, or anything that -can be converted into an Action object -(see below). - .TP .RI CacheDir ( cache_dir ) Specifies that diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 79178f53..7c1f03c0 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -15,6 +15,9 @@ RELEASE 0.15 - XXX - SCons now enforces (with an error) that construction variables must have the same form as valid Python identifiers. + - Fix man page bugs: remove duplicate AddPostAction() description; + document no_import_lib. + RELEASE 0.14 - Wed, 21 May 2003 05:16:32 -0500