* Threw away most of the gettextize-generated build system in the po/
authorArt Cancro <ajc@citadel.org>
Sat, 19 Nov 2005 04:27:07 +0000 (04:27 +0000)
committerArt Cancro <ajc@citadel.org>
Sat, 19 Nov 2005 04:27:07 +0000 (04:27 +0000)
  directory, and replaced it with a very simple Makefile.in.in instead.

webcit/ChangeLog
webcit/Makefile.in
webcit/configure.in

index ca97a788ccecda4aef9c9dce0d71b4f79c091938..ddd35a2f95cf71074af6e527fd45f52d63289966 100644 (file)
@@ -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
index e337a83d39728e5310ace4e5f0b700b881ff6f35..f5be6d5cecc104a99ed8b073f967f5847e358074 100644 (file)
@@ -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
index 2bc04a94ae7154d6d3ab07c46f300991e73e3210..33679ea87cb1a2770a579040792f909e22361419 100644 (file)
@@ -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 )