diff options
author | Eduardo Chappa <chappa@washington.edu> | 2014-04-09 16:53:03 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2014-04-09 16:53:03 -0600 |
commit | a2a86cd7f6d9cf3d6a88f3c6a005ff73f0b2341a (patch) | |
tree | e9113d18ff36fcaebc5b4cd0414f70d6e85b41a9 /po | |
parent | 7d34d6b88a46a8cf950dc6305fa3c781edd9d4f7 (diff) | |
download | alpine-a2a86cd7f6d9cf3d6a88f3c6a005ff73f0b2341a.tar.xz |
* patch by Sam Hathaway to make web alpine build when debug is turned
off.
* Fix compilation bug that made build fail if passfile was not defined.
Diffstat (limited to 'po')
-rw-r--r-- | po/Makefile.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/po/Makefile.in b/po/Makefile.in index ac0522be..b4ccec04 100644 --- a/po/Makefile.in +++ b/po/Makefile.in @@ -11,7 +11,7 @@ # Origin: gettext-0.16 PACKAGE = alpine -VERSION = 2.19.9 +VERSION = 2.19.10 PACKAGE_BUGREPORT = chappa@washington.edu SHELL = /bin/sh @@ -34,14 +34,14 @@ 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/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 +# ${SHELL} /var/run/media/chappa/Work/alpine/alpinegit/install-sh does not start with $(SHELL), so we add it. +# In automake >= 1.10, $(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/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 +mkinstalldirs = $(SHELL) ${SHELL} /var/run/media/chappa/Work/alpine/alpinegit/install-sh -d +install_sh = $(SHELL) ${SHELL} /var/run/media/chappa/Work/alpine/alpinegit/install-sh +MKDIR_P = /usr/bin/mkdir -p +mkdir_p = $(MKDIR_P) GMSGFMT_ = /usr/bin/msgfmt GMSGFMT_no = /usr/bin/msgfmt |