kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

gawk.patch (1818B)


      1 diff --git a/configure b/configure
      2 index f6544c4..d1d375f 100755
      3 --- a/configure
      4 +++ b/configure
      5 @@ -3405,7 +3405,7 @@ if test "x$enable_man" != "xno"; then :
      6  
      7  	HAVE_MAN="-DHAVE_MAN"
      8  	# Extract the first word of "gawk", so it can be a program name with args.
      9 -set dummy gawk; ac_word=$2
     10 +set dummy awk; ac_word=$2
     11  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
     12  $as_echo_n "checking for $ac_word... " >&6; }
     13  if ${ac_cv_prog_HAVE_GAWK+:} false; then :
     14 diff --git a/src/bash_completion/Makefile.in b/src/bash_completion/Makefile.in
     15 index f7db9e6..0712fdd 100644
     16 --- a/src/bash_completion/Makefile.in
     17 +++ b/src/bash_completion/Makefile.in
     18 @@ -4,7 +4,7 @@ all: firejail.bash_completion
     19  include ../common.mk
     20  
     21  firejail.bash_completion: firejail.bash_completion.in
     22 -	gawk -f ../man/preproc.awk -- $(MANFLAGS) < $< > $@.tmp
     23 +	awk -f ../man/preproc.awk -- $(MANFLAGS) < $< > $@.tmp
     24  	sed "s|_SYSCONFDIR_|$(sysconfdir)|" < $@.tmp > $@
     25  	rm $@.tmp
     26  
     27 diff --git a/src/man/Makefile.in b/src/man/Makefile.in
     28 index fbd2d79..20a9b20 100644
     29 --- a/src/man/Makefile.in
     30 +++ b/src/man/Makefile.in
     31 @@ -4,7 +4,7 @@ all: firecfg.man firejail.man firejail-login.man firejail-users.man firejail-pro
     32  include ../common.mk
     33  
     34  %.man: %.txt
     35 -	gawk -f ./preproc.awk -- $(MANFLAGS) < $< > $@
     36 +	awk -f ./preproc.awk -- $(MANFLAGS) < $< > $@
     37  
     38  .PHONY: clean
     39  clean:; rm -fr *.man
     40 diff --git a/src/zsh_completion/Makefile.in b/src/zsh_completion/Makefile.in
     41 index a83cccf..34d8423 100644
     42 --- a/src/zsh_completion/Makefile.in
     43 +++ b/src/zsh_completion/Makefile.in
     44 @@ -4,7 +4,7 @@ all: _firejail
     45  include ../common.mk
     46  
     47  _firejail: _firejail.in
     48 -	gawk -f ../man/preproc.awk -- $(MANFLAGS) < $< > $@.tmp
     49 +	awk -f ../man/preproc.awk -- $(MANFLAGS) < $< > $@.tmp
     50  	sed "s|_SYSCONFDIR_|$(sysconfdir)|" < $@.tmp > $@
     51  	rm $@.tmp
     52