Hi folks,

Because of some problems I had introduced in my local tree,
I renamed my src/lyx directory to src/lyx-old and re-created src/lyx
by a fresh get from CVS.

I found that "./autogen.sh; ./configure" did not build a po/Makefile
(even though it *did* in src/lyx-old). Upon further investigating, I
was able to bootstrap the process by placing the attached dummy Makefile
in as po/Makefile. This caused the Makefile to get created (which on
subsequent "configure" runs seems to get created as well).

Just thought I would report this oddity (maybe someone who understands
the automake/configure magic better than I can fix it).

                        ---Kayvan
-- 
Kayvan A. Sylvan          | Proud husband of       | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)
PACKAGE = lyx
VERSION = 1.2.0cvs

# These two variables depend on the location of this directory.
subdir = po
top_builddir = ..

SHELL = /bin/sh

srcdir = .
top_srcdir = ..

Makefile: Makefile.in.in $(top_builddir)/config.status POTFILES.in
        cd $(top_builddir) \
          && CONFIG_FILES=$(subdir)/[email protected] CONFIG_HEADERS= \
          $(SHELL) ./config.status

${srcdir}/POTFILES.in: $(POTFILE_IN_DEPS)
        rm -f $@-t \
        && ( cd $(top_srcdir); \
             grep -l "_(\".*\")" `find src -name \*.[hHC] -print` |\
             grep -v frontends/kde |\
             sed -e '/xforms.forms/d' | \
             sort -f -n | uniq ) > $@-t \
        && echo "src/ext_l10n.h" >> $@-t \
        && mv $@-t $@

Reply via email to