summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEduardo Lima (Etrunko) <etrunko@redhat.com>2015-10-29 17:46:55 -0200
committerEduardo Lima (Etrunko) <etrunko@redhat.com>2015-11-04 12:17:15 -0200
commit03ec5a69d25669ef612eabcad587850d0af29348 (patch)
treeeff4e3eb2325e29fbd18f9e7f5b39a3a04fe3168
parentfbce89dd7f113b62af5c6d2fb1292f1923145811 (diff)
downloadvirt-viewer-03ec5a69d25669ef612eabcad587850d0af29348.tar.gz
virt-viewer-03ec5a69d25669ef612eabcad587850d0af29348.tar.xz
virt-viewer-03ec5a69d25669ef612eabcad587850d0af29348.zip
Call intltoolize after autoreconf
After removing m4/.gitignore file in previous patch, I started getting the following error when running autogen.sh. ln: failed to create symbolic link ‘m4/intltool.m4’: No such file or directory cp: cannot create regular file ‘m4/intltool.m4’: No such file or directory intltoolize: cannot copy '/usr/share/aclocal/intltool.m4' to 'm4/intltool.m4' The problem is that intltoolize requires te m4/ directory to be present, and this directory is actually created by running autoreconf, so it should be called before intltoolize. Signed-off-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index b8d3c4d..a688ad4 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -27,8 +27,8 @@ fi
# exists at all times :-(
touch ChangeLog AUTHORS
-intltoolize --force
autoreconf -vfi
+intltoolize --force
cd $THEDIR