aboutsummaryrefslogtreecommitdiffstats
path: root/lang/gawk/files
diff options
context:
space:
mode:
authorjohans <johans@FreeBSD.org>2015-05-22 02:08:49 +0800
committerjohans <johans@FreeBSD.org>2015-05-22 02:08:49 +0800
commit991c34e7d07e51d823e9235b054b30dbee1181c2 (patch)
tree4e3fa272368234217f653168c6ba49bcca5b1304 /lang/gawk/files
parentbff5aa934cefa2324fa45de8cea754ec09d6d1e8 (diff)
downloadfreebsd-ports-gnome-991c34e7d07e51d823e9235b054b30dbee1181c2.tar.gz
freebsd-ports-gnome-991c34e7d07e51d823e9235b054b30dbee1181c2.tar.zst
freebsd-ports-gnome-991c34e7d07e51d823e9235b054b30dbee1181c2.zip
Update to GNU awk 4.1.3 (bugfix release)
Diffstat (limited to 'lang/gawk/files')
-rw-r--r--lang/gawk/files/patch-Makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/gawk/files/patch-Makefile.in b/lang/gawk/files/patch-Makefile.in
index 897fa8b0ef87..ed32fb3b3939 100644
--- a/lang/gawk/files/patch-Makefile.in
+++ b/lang/gawk/files/patch-Makefile.in
@@ -1,11 +1,11 @@
---- Makefile.in.orig 2015-04-29 05:35:51 UTC
+--- Makefile.in.orig 2015-05-19 13:38:35 UTC
+++ Makefile.in
-@@ -1175,7 +1175,7 @@ uninstall-am: uninstall-binPROGRAMS unin
- install-exec-hook:
+@@ -1178,7 +1178,7 @@ install-exec-hook:
(cd $(DESTDIR)$(bindir); \
- $(LN) gawk$(EXEEXT) gawk-$(VERSION)$(EXEEXT) 2>/dev/null ; \
+ name=`echo gawk | sed '$(transform)'` ; \
+ $(LN) $${name}$(EXEEXT) gawk-$(VERSION)$(EXEEXT) 2>/dev/null ; \
- if [ ! -f awk$(EXEEXT) ]; \
+ if ! /usr/bin/which -s awk; \
- then $(LN_S) gawk$(EXEEXT) awk$(EXEEXT); \
+ then $(LN_S) $${name}$(EXEEXT) awk$(EXEEXT); \
fi; exit 0)