From 23d38170e61b34fbbd6cf05bc2341f183c09d7c8 Mon Sep 17 00:00:00 2001 From: Leon Ho Date: Wed, 22 Sep 2004 07:14:57 +0000 Subject: [PATCH] redid the autotool renew script --- gettext.spec | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/gettext.spec b/gettext.spec index 6dd1deb..729e0fe 100644 --- a/gettext.spec +++ b/gettext.spec @@ -55,11 +55,13 @@ rm -rf %{buildroot} [ -f /usr/share/automake/depcomp ] && cp -f /usr/share/automake/{depcomp,ylwrap} . || : # Rerun autotools for new version -( cd . && aclocal --force && automake && autoconf ) -( cd autoconf-lib-link && aclocal --force && automake && autoconf ) -( cd gettext-tools && aclocal --force && automake && autoconf ) -( cd gettext-runtime && aclocal --force && automake && autoconf ) - +for i in . autoconf-lib-link gettext-tools gettext-runtime; do + pushd $i + aclocal --force + automake + autoconf + popd +done %configure --without-included-gettext --enable-nls \ --enable-shared --with-pic-=yes