summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Doc patch from issue 2282 (mention JAVAVERSION in users guide), thanks to ↵Gary Oberbrunner2009-05-292-0/+40
| | | | Knut Arild Erstad.
* Fix issue #2419 by sorting the other return path from glob() in FS.py. ↵Gary Oberbrunner2009-05-292-2/+10
| | | | Thanks to Jin Liu for the original analysis of the problem.
* Fix for issue 2088: Java version 5 is same as 1.5 and 6 is same as 1.6.Gary Oberbrunner2009-05-292-2/+30
|
* Support Intel v11 compiler on Windows. Most of the code was alreadyGary Oberbrunner2009-05-221-1/+3
| | | | | fine; this just generalizes a check for whether it's really where the registry says it is, to allow the new v11 location (Bin/<arch>/icl.exe).
* Issue 2229, fix, tests, docGreg Noel2009-05-173-45/+22
|
* Remove duplicate testGreg Noel2009-05-171-90/+0
|
* typoGreg Noel2009-05-171-1/+1
|
* Issue 2415: Tolerate unicode strings when using intern()Ludwig Hähne2009-05-174-18/+39
|
* Issue 2410: Fix crash when using one-character identifiers in C and C++ macros.Greg Noel2009-05-142-2/+6
|
* Apply fix to Textfile/Substfile suggested by Gary OberbrunnerGreg Noel2009-05-131-1/+1
|
* Fix packaging tests: exclude test/Fortran/.exclude_tests from theSteven Knight2009-05-131-0/+1
| | | | search for expanded __COPYRIGHT__ strings in the *-src* packages.
* Add ipkg.py to the MANIFEST.in list and fix 1.5 fixSteven Knight2009-05-132-4/+9
| | | | (string.split() instead of string methods).
* Rename bin/linecount to bin/linecount.py and provide finer-grainedSteven Knight2009-05-132-83/+123
| | | | (and more accurate) breakdowns of the tests.
* Fix textfile.py breakaga on platforms with weird end-of-line conventionsGreg Noel2009-05-121-1/+1
|
* Fix site_scons/site_init.py test failure on Windows by using 'type' instead ↵Gary Oberbrunner2009-05-121-3/+9
| | | | of 'cat' if win32.
* Fix issue 2421 by not trying to use os.chown on Windows.Gary Oberbrunner2009-05-121-3/+6
|
* Fix issue 1382: chown .sconsign.dblite back to original user/group when ↵Gary Oberbrunner2009-05-121-0/+20
| | | | done, when running as root. If it didn't exist, chown to user who executed sudo if known. Hard to test automatically because test needs to run as root.
* Make building SCons distribution on Windows work better: make whereis() look ↵Gary Oberbrunner2009-05-111-10/+15
| | | | for .exe as well as original filename on Windows.
* Remove unused fileGreg Noel2009-05-102-215/+1
|
* Automatically pick up the list of tools from the tool directory ratherGreg Noel2009-05-101-85/+20
| | | | than having a list in the regression test that has to be updated.
* Update regression tests to match changes in runtest.pyGreg Noel2009-05-082-16/+16
|
* Issue 2306: Exclude non-test files from regression tests. While runtest.pyGreg Noel2009-05-082-9/+17
| | | | was opened, changed two unnecessary absolute paths to relative.
* Fix #1673, CheckLib should prepend rather than append.Gary Oberbrunner2009-05-073-4/+31
|
* Fix bug #2298, make Move factory work across filesystems.Gary Oberbrunner2009-05-071-1/+1
|
* Issue 2401: Fix usage of comparison with None, patch from Jared GrubbGreg Noel2009-05-0330-125/+127
|
* Add __revision__ to new file, make __doc__ explicit.Steven Knight2009-05-011-1/+4
|
* Only try to use hg or svn for packaging in checked-out trees.Steven Knight2009-04-301-2/+2
|
* Avoid swallowing KeyboardInterrupt in new try:-except: blocks.Steven Knight2009-04-301-0/+4
|
* Fix try:-except:-finally: block, only valid starting with Python 2.5.Steven Knight2009-04-301-21/+25
|
* fix for bug #2393. Instead of just 'import'ingGary Oberbrunner2009-04-292-8/+110
| | | | | | site_scons/site_init.py, I now load that file directly into the SCons.Script namespace using exec ... in. This allows site_init.py to define tools in the way users expect.
* Sigh. Checkin to fix previous regression test cause anotherGreg Noel2009-04-231-4/+4
| | | | regression failure. This one should fix it.
* Fix regression failure (shadowed variable) in Python 2.1Greg Noel2009-04-221-8/+14
|
* Editing changes for textfile.xml and credit to Hartmut GoebelGreg Noel2009-04-222-11/+16
|
* Missed the documentation for Textfile and SubstfileGreg Noel2009-04-221-0/+204
|
* Add Textfile and Substfile buildersGreg Noel2009-04-226-17/+350
|
* use correct base class for filesystem factory functionsGreg Noel2009-04-221-1/+1
|
* Add .get_file_contents() to Value() nodesGreg Noel2009-04-221-1/+4
|
* Updates for recent modifications.Steven Knight2009-04-191-0/+34
|
* fix test that hangs occasionally to fail instead if a short time elapses ↵Greg Noel2009-04-181-10/+14
| | | | without success
* Modify the SWIG tests so that OS X is treated like a UNIX platform (which itGreg Noel2009-04-1813-204/+98
| | | | | | really is). OS X now not only runs all the SWIG tests (it used to skip many of them because it could not find the appropriate files), it now passes all the tests.
* Redirect branching page to wikiGreg Noel2009-04-171-0/+1
|
* Fix the expected "Dot not know how to make" error message.Steven Knight2009-04-161-1/+1
|
* Partial update of the use of branches; still needs TLCGreg Noel2009-04-162-21/+27
|
* Win32 fixes: update error message, accomodate re match.Steven Knight2009-04-162-3/+5
|
* Fix Python 2.2 idiom.Steven Knight2009-04-161-1/+3
|
* Per the bug report, this patch improves the "Do not know how to makeGary Oberbrunner2009-04-154-10/+27
| | | | | target X" to say what type of node is being built, and the full path (if it's a file or dir).
* Issue 2377: Check if isatty() exists before calling itLudwig Hähne2009-04-141-2/+2
|
* Patch submitted by Lukas Erlinghagen. Thanks, Lukas!Gary Oberbrunner2009-04-142-1/+113
| | | | | | | | | | this patch should fix issue 2362. - Variables that are added via Variables.Add or Variables.AddVariables are now removed from the 'unknown' dict if present - An option's name and its aliases can now actually be provided as a tuple as well as a list - Test cases for using option aliases and for issue 2362 itself are included
* Document that filename that has a dot as the first character must be matched ↵Greg Noel2009-04-121-1/+4
| | | | explicitly in a Glob() pattern
* Issue 2349: doc-only change correcting description of text returned from ↵Greg Noel2009-04-104-10/+9
| | | | sconf.Result() call