Skip to content

Commit f7bd6ae

Browse files
committed
Allow /bin/gawk as alternate
With /usr merge, debian makes /bin/gawk a symlink to /usr/bin/gawk. Signed-off-by: Keith Packard <keithp@keithp.com>
1 parent 65056bd commit f7bd6ae

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ ifneq (@GSED@,/bin/sed)
4848
PATH := $(builddir)/scripts/wrapper/sed:$(PATH)
4949
endif
5050
ifneq (@GAWK@,/usr/bin/gawk)
51-
PATH := $(builddir)/scripts/wrapper/awk:$(PATH)
51+
ifneq (@GAWK@,/bin/gawk)
52+
PATH := $(builddir)/scripts/wrapper/awk:$(PATH)
53+
endif
5254
endif
5355

5456
export PATH AWK SED

0 commit comments

Comments
 (0)