head	1.4;
access;
symbols
	RELEASE_8_3_0:1.4
	RELEASE_9_0_0:1.4
	RELEASE_7_4_0:1.3
	RELEASE_8_2_0:1.3
	RELEASE_6_EOL:1.3
	RELEASE_8_1_0:1.3
	RELEASE_7_3_0:1.3
	RELEASE_8_0_0:1.3
	RELEASE_7_2_0:1.3
	RELEASE_7_1_0:1.3
	RELEASE_6_4_0:1.3
	RELEASE_5_EOL:1.3
	RELEASE_7_0_0:1.3
	RELEASE_6_3_0:1.3
	PRE_XORG_7:1.3
	RELEASE_4_EOL:1.2
	RELEASE_6_2_0:1.2
	RELEASE_6_1_0:1.2
	RELEASE_5_5_0:1.2
	RELEASE_6_0_0:1.2
	RELEASE_5_4_0:1.2
	RELEASE_4_11_0:1.2
	RELEASE_5_3_0:1.2
	RELEASE_4_10_0:1.2
	RELEASE_5_2_1:1.2
	RELEASE_5_2_0:1.2
	RELEASE_4_9_0:1.2
	RELEASE_5_1_0:1.2
	RELEASE_4_8_0:1.2
	RELEASE_5_0_0:1.2
	RELEASE_4_7_0:1.2
	RELEASE_4_6_2:1.1
	RELEASE_4_6_1:1.1
	RELEASE_4_6_0:1.1
	RELEASE_5_0_DP1:1.1
	RELEASE_4_5_0:1.1
	RELEASE_4_4_0:1.1;
locks; strict;
comment	@# @;


1.4
date	2011.07.09.11.27.19;	author johans;	state Exp;
branches;
next	1.3;

1.3
date	2007.03.04.09.53.09;	author krion;	state Exp;
branches;
next	1.2;

1.2
date	2002.06.09.02.30.34;	author dd;	state Exp;
branches;
next	1.1;

1.1
date	2001.08.01.15.19.58;	author dd;	state Exp;
branches;
next	;


desc
@@


1.4
log
@Update GNU awk to new major release 4.0
Read the announcement and list of changes at
http://lists.gnu.org/archive/html/info-gnu/2011-06/msg00013.html
@
text
@--- Makefile.in.orig	2011-07-01 16:58:19.000000000 +0200
+++ Makefile.in	2011-07-01 16:58:47.000000000 +0200
@@@@ -1014,7 +1014,7 @@@@ install-exec-hook:
 	(cd $(DESTDIR)$(bindir); \
 	$(LN) gawk$(EXEEXT) gawk-$(VERSION)$(EXEEXT) 2>/dev/null ; \
 	$(LN) pgawk$(EXEEXT) pgawk-$(VERSION)$(EXEEXT) 2>/dev/null ; \
-	if [ ! -f awk ]; \
+	if ! /usr/bin/which -s awk; \
 	then	$(LN_S) gawk$(EXEEXT) awk; \
 	fi; exit 0)
 
@


1.3
log
@Update to 3.1.5
@
text
@d1 3
a3 3
--- Makefile.in.orig	Sun Mar  4 10:18:08 2007
+++ Makefile.in	Sun Mar  4 10:19:23 2007
@@@@ -936,7 +936,7 @@@@
d7 1
a7 1
-	if [ ! -f awk$(EXEEXT) ]; \
d9 1
a9 1
 	then	$(LN_S) gawk$(EXEEXT) awk$(EXEEXT); \
@


1.2
log
@Update to 3.1.1.

PR:		38712
Submitted by:	KATO Tsuguru <tkato@@prontomail.com>
@
text
@d1 7
a7 7
--- Makefile.in.orig	Mon Apr 29 23:36:46 2002
+++ Makefile.in	Mon May 20 21:04:00 2002
@@@@ -761,7 +761,7 @@@@
 	cd $(DESTDIR)$(bindir); \
 	$(LN) gawk $$fullname ; \
 	$(LN) pgawk p$$fullname ; \
-	if [ ! -f awk ]; \
d9 1
a9 1
 	then	$(LN_S) gawk awk; \
@


1.1
log
@Don't be stupid and assume that there's one, monolithic "bin"
directory, and that we're installing in it.  Specifically, don't
assume we're installing into /usr/bin, which is where the system 'awk'
is located.  This prevents the creation of a /usr/local/bin/awk
symlink, which should fix the mtree errors reported by bento.
@
text
@d1 3
a3 4
--- Makefile.in~	Wed Aug  1 15:12:53 2001
+++ Makefile.in	Wed Aug  1 15:13:00 2001
@@@@ -755,7 +755,7 @@@@
 	(fullname=gawk-`./gawk --version | sed 1q | awk '{print $$3}'` ; \
d6 1
@

