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 | |
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')
-rw-r--r-- | sys-apps/gawk/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/gawk/files/filefuncs/Makefile | 4 |
2 files changed, 8 insertions, 4 deletions
diff --git a/sys-apps/gawk/ChangeLog b/sys-apps/gawk/ChangeLog index 2baa753f568f..f643d407efab 100644 --- a/sys-apps/gawk/ChangeLog +++ b/sys-apps/gawk/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-apps/gawk -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/ChangeLog,v 1.125 2008/11/28 07:28:08 ulm Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/ChangeLog,v 1.126 2009/01/16 17:16:47 truedfx Exp $ + + 16 Jan 2009; Harald van Dijk <truedfx@gentoo.org> + files/filefuncs/Makefile: + Fix typo, to use CFLAGS when compiling 28 Nov 2008; Ulrich Mueller <ulm@gentoo.org> +files/gawk-3.1.6-gnuinfo.patch, gawk-3.1.6.ebuild: 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) $^ |