From 139fd500a2907e24cb16c667bd7c56cad89e9731 Mon Sep 17 00:00:00 2001
From: Roy Lee <roylee17@gmail.com>
Date: Tue, 3 Jun 2008 22:43:13 +0800
Subject: [PATCH] Use the $(CC) variable instead of specifying gcc directly so that it can be cross-built.

---
 testcases/kernel/fs/fs_bind/bin/Makefile |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/testcases/kernel/fs/fs_bind/bin/Makefile b/testcases/kernel/fs/fs_bind/bin/Makefile
index c797637..0fac9d6 100644
--- a/testcases/kernel/fs/fs_bind/bin/Makefile
+++ b/testcases/kernel/fs/fs_bind/bin/Makefile
@@ -19,10 +19,10 @@ uninstall:
 	@/bin/true
 
 nsclone: nsclone.c
-	gcc $(CFLAGS) $(LIBS) -o nsclone nsclone.c
+	$(CC) $(CFLAGS) $(LIBS) -o nsclone nsclone.c
 
 smount: smount.c
-	gcc $(CFLAGS) $(LIBS) -o smount smount.c
+	$(CC) $(CFLAGS) $(LIBS) -o smount smount.c
 
 clean:
 	rm -f smount nsclone
-- 
1.5.5.3

