Commit c9649834 was reverted because wildcard can not be used to list
subdirectories:
[alinefm@alinefm kimchi]$ sudo ./autogen.sh --system
ui/pages/help/Makefile.am:17: error: required directory ui/pages/help/$(dir does not
exist
ui/pages/help/Makefile.am:17: error: required directory ui/pages/help/$(wildcard does not
exist
ui/pages/help/Makefile.am:17: error: required directory ui/pages/help/*/)) does not exist
ui/pages/help/Makefile.am:17: error: required directory ui/pages/help/$(dir does not
exist
ui/pages/help/Makefile.am:17: error: required directory ui/pages/help/$(wildcard does not
exist
ui/pages/help/Makefile.am:17: error: required directory ui/pages/help/*/)) does not exist
autoreconf: automake failed with exit status: 1
So manually list the new languages supported for help.
Signed-off-by: Aline Manera <alinefm(a)linux.vnet.ibm.com>
---
ui/pages/help/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/pages/help/Makefile.am b/ui/pages/help/Makefile.am
index fa9786b..5c04319 100644
--- a/ui/pages/help/Makefile.am
+++ b/ui/pages/help/Makefile.am
@@ -14,7 +14,7 @@
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-SUBDIRS = en_US pt_BR zh_CN
+SUBDIRS = zh_CN it_IT en_US zh_TW pt_BR ja_JP ru_RU ko_KR fr_FR de_DE es_ES
DITA_HTML_FILES = $(patsubst %.dita,%.html,$(wildcard */*.dita))
HTML_FILES = $(if $(DITA_HTML_FILES), $(DITA_HTML_FILES), $(wildcard */*.html))
--
1.9.3