diff options
author | Eduardo Chappa <chappa@washington.edu> | 2013-12-27 12:20:58 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2013-12-27 12:20:58 -0700 |
commit | 1bf084e1ed4cd931b08e233a3f5c30cc9de05dfc (patch) | |
tree | 5b25afa90c9ea9dbf7c8589040ee12f24b5363ad /po | |
parent | 186a23ef94452e15aeadf60224300ca16acd4182 (diff) | |
download | alpine-1bf084e1ed4cd931b08e233a3f5c30cc9de05dfc.tar.xz |
* new address alpine-count@patches.freeiz.com for counting users of
Alpine.
* When writing the .pinerc file, lines could not be longer than
10,000 characters, or else this caused corruption in the .pinerc data.
Now they are allowed to be of any size.
* Fix a problem that made Alpine remove files before they were open by
the viewer. It requires that the user has an equivalent to a command
such as "ps auxww" to list the list of processes. The default is
"/bin/ps auxww", but it can be changed at compile time with the option
--with-ps-cmd.
* Remove -lregex from linker flags when building --with-supplied-regex.
* Fix _INIT_ token for reply quote string to include support for 8-bit
in personal names.
Diffstat (limited to 'po')
-rw-r--r-- | po/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/po/Makefile.in b/po/Makefile.in index d7b9ce35..fda5c707 100644 --- a/po/Makefile.in +++ b/po/Makefile.in @@ -11,7 +11,7 @@ # Origin: gettext-0.16 PACKAGE = alpine -VERSION = 2.19.2 +VERSION = 2.19.4 PACKAGE_BUGREPORT = chappa@washington.edu SHELL = /bin/sh @@ -34,12 +34,12 @@ INSTALL_DATA = ${INSTALL} -m 644 # We use $(mkdir_p). # In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as # "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions, -# ${SHELL} /media/Alpine/alpine/alpinegit/install-sh does not start with $(SHELL), so we add it. +# ${SHELL} /media/Work/alpine/alpinegit/install-sh does not start with $(SHELL), so we add it. # In automake >= 1.10, /bin/mkdir -p is derived from ${MKDIR_P}, which is defined # either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake # versions, $(mkinstalldirs) and $(install_sh) are unused. -mkinstalldirs = $(SHELL) ${SHELL} /media/Alpine/alpine/alpinegit/install-sh -d -install_sh = $(SHELL) ${SHELL} /media/Alpine/alpine/alpinegit/install-sh +mkinstalldirs = $(SHELL) ${SHELL} /media/Work/alpine/alpinegit/install-sh -d +install_sh = $(SHELL) ${SHELL} /media/Work/alpine/alpinegit/install-sh MKDIR_P = /bin/mkdir -p mkdir_p = /bin/mkdir -p |