Skip to content

Commit

Permalink
Align the local user space on the org name
Browse files Browse the repository at this point in the history
  • Loading branch information
mesheets committed Aug 29, 2024
1 parent 8d1f8c4 commit 2697675
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions GUI.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ exec wish $0 ${1+"$@"}
set firmware ""
set brickaddr 0
set brickosname bibo
set brickoshome "/usr/local/$brickosname"
set brickbothome "/usr/local/brickbot"
if { [llength [array get env BRICKOS_DIR]] != 0 } {
set brickoshome $env(BRICKOS_DIR)
set brickbothome $env(BRICKOS_DIR)
}

set BRICKOS_LIBDIR "$brickoshome/lib/$brickosname"
set BRICKOS_LIBDIR "$brickbothome/lib/$brickosname"
if { [llength [array get env BRICKOS_LIBDIR]] != 0 } {
set BRICKOS_LIBDIR $env(BRICKOS_LIBDIR)
}

set CROSSTOOLPREFIX "$brickoshome/bin/h8300-hitachi-hms-"
set CROSSTOOLPREFIX "$brickbothome/bin/h8300-hitachi-coff-"
if { [llength [array get env CROSSTOOLPREFIX]] != 0 } {
set CROSSTOOLPREFIX $env(CROSSTOOLPREFIX)
}
Expand Down

0 comments on commit 2697675

Please sign in to comment.