aboutsummaryrefslogtreecommitdiff
path: root/bootstrap.conf
blob: af432d7af4889c231d195d23b90c62fc3d75a8ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Bootstrap configuration for Tagr.      -*- shell-script -*-
# Copyright (C) 2008, 2009 Sergey Poznyakoff
#
# Tagr 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 3, or (at your option)
# any later version.
#
# Tagr 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.
#
# You should have received a copy of the GNU General Public License
# along with Tagr.  If not, see <http://www.gnu.org/licenses/>.

source_base=gnu
gnulib_name=libgnu
gnulib_mk=Makefile.am

if git config submodule.grecs.url >/dev/null; then : ; else
  git submodule init || exit $?
  git submodule update || exit $?
fi

# gnulib modules used by this package.
gnulib_modules=`grep -h '^[^#]' gnulib.modules grecs/gnulib.modules`

SKIP_PO=t

# Read local configuration file
if [ -r .bootstrap ]; then
  echo "$0: Reading configuration file .bootstrap"
  eval set -- "`sed 's/#.*$//;/^$/d' .bootstrap | tr '\n' ' '` $*"
fi

test -d $source_base || mkdir $source_base

test -f Changelog || cat > ChangeLog <<EOT
This file is a placeholder. It will be replaced with the actual ChangeLog
by make dist.  Run make ChangeLog if you wish to create it earlier.
EOT

Return to:

Send suggestions and report system problems to the System administrator.