Skip to content
Snippets Groups Projects
Commit d39d9c6a authored by Olivier Fourdan's avatar Olivier Fourdan :tools:
Browse files

Use Jannis' autogen.sh script from Thunar

parent 9dc8058c
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
#
# $Id$
# vi:set et ai sw=2 sts=2 ts=2: */
#-
# Copyright (c) 2009 Jannis Pohlmann <jannis@xfce.org>
#
# Copyright (c) 2002-2005
# The Xfce development team. All rights reserved.
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of
# the License, or (at your option) any later version.
#
# Written for Xfce by Benedikt Meurer <benny@xfce.org>.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# Set locale to C to avoid troubles with "svn info" output parsing
LC_ALL=C
LANG=C
export LC_ALL LANG
# You should have received a copy of the GNU General Public
# License along with this program; if not, write to the Free
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA.
(type xdt-autogen) >/dev/null 2>&1 || {
cat >&2 <<EOF
......@@ -23,24 +29,4 @@ EOF
exit 1
}
# verify that po/LINGUAS is present
(test -f po/LINGUAS) >/dev/null 2>&1 || {
cat >&2 <<EOF
autogen.sh: The file po/LINGUAS could not be found. Please check your snapshot
or try to checkout again.
EOF
exit 1
}
echo "Creating configure.ac"
# substitute revision and linguas
linguas=`sed -e '/^#/d' po/LINGUAS`
revision=`git rev-parse --short HEAD`
sed -e "s/@LINGUAS@/${linguas}/g" \
-e "s/@REVISION@/${revision}/g" \
< "configure.ac.in" > "configure.ac"
exec xdt-autogen $@
# vi:set ts=2 sw=2 et ai:
XDT_AUTOGEN_REQUIRED_VERSION="4.7.0" exec xdt-autogen $@
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment