summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-04-24 00:41:36 +0000
committerMike Frysinger <vapier@gentoo.org>2004-04-24 00:41:36 +0000
commitc553ff374f5880e88d289d053f2d19cd0e4ef7f4 (patch)
treee9dc396aef3c26bbaf4b3d126c6935009431da37 /sys-apps
parentdidnt mean to commit you just yet (diff)
downloadgentoo-2-c553ff374f5880e88d289d053f2d19cd0e4ef7f4.tar.gz
gentoo-2-c553ff374f5880e88d289d053f2d19cd0e4ef7f4.tar.bz2
gentoo-2-c553ff374f5880e88d289d053f2d19cd0e4ef7f4.zip
allow env $CC to override
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/gawk/files/filefuncs/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/sys-apps/gawk/files/filefuncs/Makefile b/sys-apps/gawk/files/filefuncs/Makefile
index 1668f3bbffde..3f197a3dc689 100644
--- a/sys-apps/gawk/files/filefuncs/Makefile
+++ b/sys-apps/gawk/files/filefuncs/Makefile
@@ -1,10 +1,10 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Author: Martin Schlemmer <azarah@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/files/filefuncs/Makefile,v 1.2 2003/03/25 18:06:59 azarah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/files/filefuncs/Makefile,v 1.3 2004/04/24 00:41:36 vapier Exp $
-CC = gcc
-LD = gcc
+CC ?= gcc
+LD = $(CC)
MAJORVER = 0
MINORVER = 0.1
@@ -32,4 +32,3 @@ install: $(TARGET)
clean:
rm -f $(TARGET)
rm -f *.o *~ core
-