Skip to content

Commit

Permalink
Fix installation by disabling translations
Browse files Browse the repository at this point in the history
  • Loading branch information
anordal committed Feb 14, 2017
1 parent bf11d24 commit 0a5c1d7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ EXTRA_DIST = \
splashdir = $(pkgdatadir)/splash
splash_DATA = splash.png

SUBDIRS = src data extras extras-standard textures models shaders fonts po po2 locale scripts
SUBDIRS = src data extras extras-standard textures models shaders fonts locale scripts
# FIXME: Translation makefiles are broken: MKDIR_P is an empty string.
# Disabling translations for now.
#SUBDIRS += po po2

# Non-automake directories
NONAUTO = admin macosx windows
Expand Down
8 changes: 6 additions & 2 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -465,8 +465,12 @@ AC_CONFIG_FILES([ src/celestia/gtk/Makefile ])
AC_CONFIG_FILES([ src/celestia/gtk/data/Makefile ])
AC_CONFIG_FILES([ src/celestia/qt/Makefile ])
AC_CONFIG_FILES([ src/celestia/qt/data/Makefile ])
AC_CONFIG_FILES([ po/Makefile.in ])
AC_CONFIG_FILES([ po2/Makefile.in ])

dnl FIXME: Translation makefiles are broken: MKDIR_P is an empty string.
dnl Disabling translations for now.
dnl AC_CONFIG_FILES([ po/Makefile.in ])
dnl AC_CONFIG_FILES([ po2/Makefile.in ])

AC_CONFIG_FILES([ locale/Makefile ])
AC_CONFIG_FILES([ scripts/Makefile ])
AC_OUTPUT()
Expand Down

0 comments on commit 0a5c1d7

Please sign in to comment.