From 9f7ebef3d464a2e40fae75012201a5da2740b99c Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 10 Aug 2009 15:00:48 +0200 Subject: [PATCH 1/1] build: avoid first-time configure-from-clone failure * bootstrap: Run autopoint before using the file it creates, po/Makevars.template. Reported by Richard Jones. Details here: https://www.redhat.com/archives/libguestfs/2009-August/msg00135.html --- bootstrap | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bootstrap b/bootstrap index 1eee72d..cea8c40 100755 --- a/bootstrap +++ b/bootstrap @@ -28,6 +28,9 @@ GNULIB_SRCDIR=.gnulib ls po/*.po 2>/dev/null | sed 's|.*/||; s|\.po$||' > po/LINGUAS +# Run autopoint, to get po/Makevars.template: +autopoint + # Create gettext configuration. echo "$0: Creating po/Makevars from po/Makevars.template ..." rm -f po/Makevars -- 1.8.3.1