From 84d49b2a8dc438070526096084e401ac08b93f25 Mon Sep 17 00:00:00 2001 From: jacob Date: Fri, 25 Jul 2003 21:37:41 +0000 Subject: [PATCH] Use $(CC) instead of gcc (fixes cross compile build). --- lnet/utils/Makefile.am | 4 ++-- lustre/portals/utils/Makefile.am | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lnet/utils/Makefile.am b/lnet/utils/Makefile.am index 05af598..d51e3b3 100644 --- a/lnet/utils/Makefile.am +++ b/lnet/utils/Makefile.am @@ -4,8 +4,8 @@ # See the file COPYING in this distribution -COMPILE = gcc -Wall -g -I$(srcdir)/../include -LINK = gcc -o $@ +COMPILE = $(CC) -Wall -g -I$(srcdir)/../include +LINK = $(CC) -o $@ sbin_PROGRAMS = acceptor ptlctl debugctl routerstat wirecheck lib_LIBRARIES = libptlctl.a diff --git a/lustre/portals/utils/Makefile.am b/lustre/portals/utils/Makefile.am index 05af598..d51e3b3 100644 --- a/lustre/portals/utils/Makefile.am +++ b/lustre/portals/utils/Makefile.am @@ -4,8 +4,8 @@ # See the file COPYING in this distribution -COMPILE = gcc -Wall -g -I$(srcdir)/../include -LINK = gcc -o $@ +COMPILE = $(CC) -Wall -g -I$(srcdir)/../include +LINK = $(CC) -o $@ sbin_PROGRAMS = acceptor ptlctl debugctl routerstat wirecheck lib_LIBRARIES = libptlctl.a -- 1.8.3.1