From: Rob Savoye Date: Fri, 3 Dec 1993 04:07:15 +0000 (+0000) Subject: * config/unix.exp: Add global before seeing if the variables for X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=00d8666550b91667b296ecd7ad38b5b7152a948d;p=binutils-gdb.git * config/unix.exp: Add global before seeing if the variables for nm, objdump, and size exist. --- diff --git a/binutils/testsuite/config/unix.exp b/binutils/testsuite/config/unix.exp index 29ea0d861b2..31fe7e37821 100644 --- a/binutils/testsuite/config/unix.exp +++ b/binutils/testsuite/config/unix.exp @@ -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 "" }