diff options
author | Richard Levitte <levitte@openssl.org> | 2002-08-18 23:32:19 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-08-18 23:32:19 +0200 |
commit | fbb311a7d2de8f615d28f60429a906adf92b9316 (patch) | |
tree | 7bae90d15ecf584576ca4e574d729883c957f326 /Makefile.org | |
parent | So, I discovered that if you have your $PATH set so a ld different from (diff) | |
download | openssl-fbb311a7d2de8f615d28f60429a906adf92b9316.tar.xz openssl-fbb311a7d2de8f615d28f60429a906adf92b9316.zip |
Typo, I assigned the variable ld instead of my_ld...
Diffstat (limited to 'Makefile.org')
-rw-r--r-- | Makefile.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.org b/Makefile.org index 9611461751..ab45a851ca 100644 --- a/Makefile.org +++ b/Makefile.org @@ -275,7 +275,7 @@ do_gnu-shared: done DETECT_GNU_LD=${CC} -v 2>&1 | grep '^gcc' >/dev/null 2>&1 && \ - ld=`gcc -print-prog-name=ld 2>&1` && \ + my_ld=`gcc -print-prog-name=ld 2>&1` && \ [ -n "$$my_ld" ] && \ $$my_ld -v 2>&1 | grep 'GNU ld' >/dev/null 2>&1 |