diff options
author | Richard Lowe <richlowe@richlowe.net> | 2016-05-30 21:05:39 +0100 |
---|---|---|
committer | Hans Rosenfeld <hans.rosenfeld@nexenta.com> | 2016-06-01 20:50:51 +0200 |
commit | 1919e1f72d0a8141a10acd516bd1daa5064c8d07 (patch) | |
tree | 091dba9a1d853d8e389f6bc266e8d9d63ab3cf11 | |
parent | 258c9c7d86e8c69f1255ce2b5aeda40ac16d36ca (diff) | |
download | illumos-joyent-1919e1f72d0a8141a10acd516bd1daa5064c8d07.tar.gz |
7015 libc tests need to use LINK64 correctly, rather than just passing -m64
Reviewed by: Dan McDonald <damncd@omniti.com>
Reviewed by: Andy Stormont <astormont@racktopsystems.com>
Reviewed by: Jason King <jason.brian.king@gmail.com>
Approved by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
-rw-r--r-- | usr/src/test/libc-tests/tests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/test/libc-tests/tests/Makefile b/usr/src/test/libc-tests/tests/Makefile index 4f237e9136..f8e539234c 100644 --- a/usr/src/test/libc-tests/tests/Makefile +++ b/usr/src/test/libc-tests/tests/Makefile @@ -82,7 +82,7 @@ $(ROOTOPTDIR)/%: %.ksh $(INS.rename) %.64: %.c - $(LINK.c) -m64 -o $@ $< $(LDLIBS64) + $(LINK64.c) -o $@ $< $(LDLIBS64) $(POST_PROCESS) %.32: %.c |