diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-11-03 11:29:33 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-11-03 11:29:33 +0200 |
commit | a88d9db6a0a279e6b47a4348e7df37d89e4261ed (patch) | |
tree | 0d628b907b59d9eaf5d6ea79660c2d9e13e6ad9d | |
parent | 7ba932b59a753fff5ad742c3af0ba963c8153cfe (diff) | |
parent | 6f773a78fff93fa819cc68758b9ceba31858d7b8 (diff) | |
download | egawk-a88d9db6a0a279e6b47a4348e7df37d89e4261ed.tar.gz egawk-a88d9db6a0a279e6b47a4348e7df37d89e4261ed.tar.bz2 egawk-a88d9db6a0a279e6b47a4348e7df37d89e4261ed.zip |
Merge branch 'master' into feature/fix-comments
-rw-r--r-- | pc/ChangeLog | 10 | ||||
-rw-r--r-- | pc/Makefile | 6 | ||||
-rw-r--r-- | pc/Makefile.tst | 2 |
3 files changed, 16 insertions, 2 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog index 800e6790..bc1e3a3e 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -1,3 +1,13 @@ +2017-11-03 Juan Manuel Guerrero <juan.guerrero@gmx.de> + + * Makefile (install1): Copy gawk.exe to awk.exe before copying + *awk.exe. + +2017-11-03 Scott Deifik <scottd.mail@sbcglobal.net> + + * Makefile.tst (readdir): Make the message identical with + test/Makefile.in. + 2017-10-21 KO Myung-Hun <komh78@gmail.com> * gawkmisc.pc (os2_dlsym, os2_fixdllname, os2_dlopen) [__KLIBC__]: diff --git a/pc/Makefile b/pc/Makefile index be5e052e..bdec371c 100644 --- a/pc/Makefile +++ b/pc/Makefile @@ -288,6 +288,10 @@ popen$O: popen.h install: install$(install) -$(MAKE) -C extension install-extensions +# Note: The line that copies gawk.exe into awk.exe should come before +# the line after it, which copies *awk.exe, to support the DJGPP "hard +# link to executables" feature, whereby awk.exe is actually a small +# stub that invokes gawk.exe. install1: echo extproc sh $(prefix)/bin/igawk.cmd > igawk.cmd echo shift >> igawk.cmd @@ -299,8 +303,8 @@ install1: -mkdir "$(prefix)/share" -mkdir "$(prefix)/share/man" -mkdir "$(pkgdatadir)" "$(prefix)/share/man/man1" "$(prefix)/share/info" - cp *awk.exe igawk.bat igawk.cmd pc/awklib/igawk $(prefix)/bin cp gawk.exe $(prefix)/bin/awk.exe + cp *awk.exe igawk.bat igawk.cmd pc/awklib/igawk $(prefix)/bin cp gawkapi.h $(prefix)/include cp awklib/eg/lib/* pc/awklib/igawk.awk $(pkgdatadir) cp doc/*.1 $(prefix)/share/man/man1 diff --git a/pc/Makefile.tst b/pc/Makefile.tst index b0686fe6..9c3ec144 100644 --- a/pc/Makefile.tst +++ b/pc/Makefile.tst @@ -1175,7 +1175,7 @@ getfile: readdir: @if [ "`uname`" = Linux ] && [ "`stat -f . 2>/dev/null | awk 'NR == 2 { print $$NF }'`" = nfs ]; then \ - echo This test may fail on GNU/Linux systems when run on an NFS filesystem.; \ + echo This test may fail on GNU/Linux systems when run on NFS or JFS filesystems.; \ echo If it does, try rerunning on an ext'[234]' filesystem. ; \ fi @echo $@ |