From 00d8666550b91667b296ecd7ad38b5b7152a948d Mon Sep 17 00:00:00 2001 From: Rob Savoye Date: Fri, 3 Dec 1993 04:07:15 +0000 Subject: [PATCH] * config/unix.exp: Add global before seeing if the variables for nm, objdump, and size exist. --- binutils/testsuite/config/unix.exp | 6 ++++++ 1 file changed, 6 insertions(+) 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 "" } -- 2.30.2