diff options
author | Harald van Dijk <truedfx@gentoo.org> | 2009-01-16 17:16:48 +0000 |
---|---|---|
committer | Harald van Dijk <truedfx@gentoo.org> | 2009-01-16 17:16:48 +0000 |
commit | d27d5021b58d56bc648b9a47392a85779b705f34 (patch) | |
tree | b5620571e88637201363196bfee1caaeea0743d9 /sys-apps/gawk/files | |
parent | New upstream version (fixes bug #248799). (diff) | |
download | gentoo-2-d27d5021b58d56bc648b9a47392a85779b705f34.tar.gz gentoo-2-d27d5021b58d56bc648b9a47392a85779b705f34.tar.bz2 gentoo-2-d27d5021b58d56bc648b9a47392a85779b705f34.zip |
Fix typo, to use CFLAGS when compiling
(Portage version: 2.2_rc22/cvs/Linux 2.6.28-gentoo x86_64)
Diffstat (limited to 'sys-apps/gawk/files')
-rw-r--r-- | sys-apps/gawk/files/filefuncs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-apps/gawk/files/filefuncs/Makefile b/sys-apps/gawk/files/filefuncs/Makefile index 2f1a05f5d2c2..75fc4ba8bcda 100644 --- a/sys-apps/gawk/files/filefuncs/Makefile +++ b/sys-apps/gawk/files/filefuncs/Makefile @@ -1,7 +1,7 @@ # Copyright 1999-2004 Gentoo Foundation # 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.8 2006/03/28 07:15:31 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/files/filefuncs/Makefile,v 1.9 2009/01/16 17:16:48 truedfx Exp $ CC ?= gcc LD = $(CC) @@ -35,7 +35,7 @@ ifeq ($(DOIT),yes) all: $(TARGET_LIB) $(TARGET).o: $(TARGET).c - $(CC) $(CLAGS) -shared -Wall -DHAVE_CONFIG_H -c -O2 -fPIC -I$(AWKINCDIR) $^ + $(CC) $(CFLAGS) -shared -Wall -DHAVE_CONFIG_H -c -O2 -fPIC -I$(AWKINCDIR) $^ $(TARGET_LIB): $(TARGET).o $(LD) $(LDFLAGS) -o $@ -shared -Wl,-soname -Wl,$(TARGET).so.$(MAJORVER) $^ |