diff options
author | Steve Bennett <steveb@workware.net.au> | 2013-03-28 07:15:00 +1000 |
---|---|---|
committer | Steve Bennett <steveb@workware.net.au> | 2013-03-28 07:19:55 +1000 |
commit | 738b8b93eec3ffcac1b84ddd85179a4351bc82ef (patch) | |
tree | 13aa0401a28123ea376d3ccd793d928ff894b100 /autosetup/system.tcl | |
parent | c7e5c48c4434835a19628ebecfa1bf59883f5f58 (diff) | |
download | jimtcl-738b8b93eec3ffcac1b84ddd85179a4351bc82ef.zip jimtcl-738b8b93eec3ffcac1b84ddd85179a4351bc82ef.tar.gz jimtcl-738b8b93eec3ffcac1b84ddd85179a4351bc82ef.tar.bz2 |
Update autosetup to v0.6.5
Includes a fix for -gstabs on newer macs
Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'autosetup/system.tcl')
-rw-r--r-- | autosetup/system.tcl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/autosetup/system.tcl b/autosetup/system.tcl index f05d05b..2712e39 100644 --- a/autosetup/system.tcl +++ b/autosetup/system.tcl @@ -217,7 +217,8 @@ if {$host eq ""} { } define cross [get-env CROSS $cross] -set prefix [opt-val prefix /usr/local] +# Do "define defaultprefix myvalue" to set the default prefix *before* the first "use" +set prefix [opt-val prefix [get-define defaultprefix /usr/local]] # These are for compatibility with autoconf define target [get-define host] @@ -254,7 +255,7 @@ define SHELL [get-env SHELL [find-an-executable sh bash ksh]] # Windows vs. non-Windows switch -glob -- [get-define host] { - *-*-ming* - *-*-cygwin { + *-*-ming* - *-*-cygwin - *-*-msys { define-feature windows define EXEEXT .exe } |