Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fixed where sherpa_bootstrap installs sherpa packages |
|---|---|
| Timelines: | family | ancestors | descendants | both | autosetup |
| Files: | files | file ages | folders |
| SHA1: |
223625274c460b94eaaf4915903c9a1a |
| User & Date: | hypnotoad 2015-03-27 19:03:33 |
Context
|
2015-03-30
| ||
| 18:19 | Adding a helper install script to Odie's autosetup check-in: 571ce26bd6 user: hypnotoad tags: autosetup | |
|
2015-03-27
| ||
| 19:03 | Fixed where sherpa_bootstrap installs sherpa packages check-in: 223625274c user: hypnotoad tags: autosetup | |
| 18:41 | Modifications to the build process to accomidate linux Added sherpa to the pantheon of bootstrapped packages Removed the autosetup step for toadkits baked into odie autosetup ΓΈ check-in: 99ca0f2d45 user: hypnotoad tags: autosetup | |
Changes
Changes to scripts/common.tcl.
| ︙ | ︙ | |||
110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
}
}
proc ::sherpa_bootstrap::build_sak {pkg action} {
if {$action eq "install"} {
set PKG_SRCPATH [sandbox_path $pkg]
doexec $::odie(build_tclsh) [file join $PKG_SRCPATH installer.tcl] \
-no-examples -no-nroff -no-html \
-no-wait -no-gui
}
}
proc ::sherpa_bootstrap::build_kettle {pkg action} {
set PKG_SRCPATH [sandbox_path $pkg]
| > | 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
}
}
proc ::sherpa_bootstrap::build_sak {pkg action} {
if {$action eq "install"} {
set PKG_SRCPATH [sandbox_path $pkg]
doexec $::odie(build_tclsh) [file join $PKG_SRCPATH installer.tcl] \
-app-path $::odie(prefix)/bin -pkg-path $::odie(prefix)/lib/$pkg \
-no-examples -no-nroff -no-html \
-no-wait -no-gui
}
}
proc ::sherpa_bootstrap::build_kettle {pkg action} {
set PKG_SRCPATH [sandbox_path $pkg]
|
| ︙ | ︙ |