From: Art Cancro Date: Sat, 19 Nov 2005 04:27:07 +0000 (+0000) Subject: * Threw away most of the gettextize-generated build system in the po/ X-Git-Tag: v7.86~4445 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=31f850a242196e0609f8fd33589a37a4627a8ef6 * Threw away most of the gettextize-generated build system in the po/ directory, and replaced it with a very simple Makefile.in.in instead. --- diff --git a/webcit/ChangeLog b/webcit/ChangeLog index ca97a788c..ddd35a2f9 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,5 +1,9 @@ $Id$ +Fri Nov 18 23:24:09 EST 2005 ajc +* Threw away most of the gettextize-generated build system in the po/ + directory, and replaced it with a very simple Makefile.in.in instead. + Thu Nov 17 11:32:39 EST 2005 ajc * More changes to try to get the po/ directory to build properly. It's still not working. If you want to run WebCit using the current tree, be sure to diff --git a/webcit/Makefile.in b/webcit/Makefile.in index e337a83d3..f5be6d5ce 100644 --- a/webcit/Makefile.in +++ b/webcit/Makefile.in @@ -80,11 +80,16 @@ install: ; do \ test -d $(root)$(prefix)/$$i || mkdir $(root)$(prefix)/$$i; \ done + for i in `find locale -type d | grep -v .svn` \ + ; do \ + test -d $(root)$(prefix)/$$i || mkdir $(root)$(prefix)/$$i; \ + done for i in \ webserver \ setup \ `find static -type f | grep -v .svn` \ `find tiny_mce -type f | grep -v .svn` \ + `find locale -type f | grep -v .svn` \ ; do \ $(INSTALL) $$i $(root)$(prefix)/$$i; \ done diff --git a/webcit/configure.in b/webcit/configure.in index 2bc04a94a..33679ea87 100644 --- a/webcit/configure.in +++ b/webcit/configure.in @@ -270,5 +270,5 @@ AM_GNU_GETTEXT AC_SUBST(SETUP_LIBS) -AC_OUTPUT(Makefile intl/Makefile po/Makefile.in ) +AC_OUTPUT(Makefile intl/Makefile po/Makefile.in po/Makefile )