* config/unix.exp: Add global before seeing if the variables for

nm, objdump, and size exist.
This commit is contained in:
Rob Savoye 1993-12-03 04:07:15 +00:00
parent 2031a59499
commit 00d8666550

View file

@ -21,21 +21,27 @@
load_lib util-defs.exp
global NM
if ![info exists NM] then {
set NM [transform nm]
}
global NMFLAGS
if ![info exists NMFLAGS] then {
set NMFLAGS ""
}
global SIZE
if ![info exists SIZE] then {
set SIZE [transform size]
}
global SIZEFLAGS
if ![info exists SIZEFLAGS] then {
set SIZEFLAGS ""
}
global OBJDUMP
if ![info exists OBJDUMP] then {
set OBJDUMP [transform objdump]
}
global OBJDUMPFLAGS
if ![info exists OBJDUMPFLAGS] then {
set OBJDUMPFLAGS ""
}