From: jacob Date: Fri, 25 Jul 2003 21:37:41 +0000 (+0000) Subject: Use $(CC) instead of gcc (fixes cross compile build). X-Git-Tag: v1_7_0_51~2^14~28 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=84d49b2a8dc438070526096084e401ac08b93f25;p=fs%2Flustre-release.git Use $(CC) instead of gcc (fixes cross compile build). --- 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