Skip to content

Commit

Permalink
v641
Browse files Browse the repository at this point in the history
  • Loading branch information
gwsw committed Jul 10, 2023
1 parent 995e328 commit abc7c35
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile.aut
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ dist: ${DISTFILES}
rm -rf $$RELDIR && mkdir $$RELDIR && \
echo "Preparing $$LESSREL" && \
rm -rf $$LESSREL && mkdir $$LESSREL && \
for f in ${DISTFILES}; do cp $$f $$LESSREL/$$f; done && \
for f in ${DISTFILES}; do mkdir -p $$(dirname $$LESSREL/$$f); cp $$f $$LESSREL/$$f; done && \
cd $$LESSREL && chmod -w * && chmod +w ${DISTFILES_W} && chmod +x configure && cd .. && \
echo "Creating $$RELDIR/$$TARF" && \
tar -cf - $$LESSREL | gzip -c >$$RELDIR/$$TARF && \
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

======================================================================

Major changes between "less" versions 633 and 640
Major changes between "less" versions 633 and 641

* Fix problem when a program piping into less reads from the tty,
like sudo asking for password (github #368).
Expand Down
3 changes: 2 additions & 1 deletion version.c
Original file line number Diff line number Diff line change
Expand Up @@ -990,6 +990,7 @@ v637 6/28/23 Fix early EOF when SIGWINCH is received.
v638 6/29/23 Fix compile error with ECHONL.
v639 6/29/23 Fix SIGWINCH while reading tty.
v640 7/10/23 Add lesstest to release.
v641 7/10/23 Fix release.
*/

char version[] = "640";
char version[] = "641";

0 comments on commit abc7c35

Please sign in to comment.