diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2010-08-08 16:43:13 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2010-08-08 16:43:13 -0400 |
commit | 7e36601aad8360a09bf6572fe726bc93ee297459 (patch) | |
tree | 56953427a869c879b88643841452d9fd4f37cb3a | |
parent | 73a100f9a4c5c1e67084d7bdc5b425b2f8a11462 (diff) | |
download | lynx-snapshots-7e36601aad8360a09bf6572fe726bc93ee297459.tar.gz |
snapshot of project "lynx", label v2-8-8dev_4b
-rw-r--r-- | CHANGES | 6 | ||||
-rw-r--r-- | po/makefile.inn | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES index 6c23c167..757ed231 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,11 @@ --- $LynxId: CHANGES,v 1.493 2010/06/29 00:41:50 tom Exp $ +-- $LynxId: CHANGES,v 1.495 2010/08/08 16:43:13 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== -2010-06-28 (2.8.8dev.5) +2010-08-08 (2.8.8dev.5) +* correct typo in po/makefile.inn from removal of mkdirs.sh in dev.4 (Debian + #592078) -TD * correct a sign-extension error in UpdateBoundary(), used for MIME boundary computation, broken in dev.4 compiler-warning fixes -TD diff --git a/po/makefile.inn b/po/makefile.inn index 07c832d4..be551820 100644 --- a/po/makefile.inn +++ b/po/makefile.inn @@ -1,4 +1,4 @@ -# $LynxId: makefile.inn,v 1.17 2010/06/19 10:57:02 tom Exp $ +# $LynxId: makefile.inn,v 1.18 2010/08/08 14:07:45 tom Exp $ # # Makefile for program source directory in GNU NLS utilities package. # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu> @@ -123,7 +123,7 @@ install-exec: install-data: install-data-@USE_NLS@ install-data-no: all install-data-yes: all - mkdir -p $(DATADIR); \ + mkdir -p $(DATADIR) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ |