]> Dogcows Code - chaz/tar/blob - bootstrap.conf
Options to control option handling in file lists.
[chaz/tar] / bootstrap.conf
1 # Bootstrap configuration for GNU tar.
2
3 # Copyright 2006-2009, 2013-2014 Free Software Foundation, Inc.
4
5 # This file is part of GNU tar.
6
7 # GNU tar is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11
12 # GNU tar is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20 source_base=gnu
21 gnulib_name=libgnu
22
23 # We don't need these modules, even though gnulib-tool mistakenly
24 # includes them because of gettext dependencies.
25 avoided_gnulib_modules='
26 --avoid=lock
27 '
28
29 # gnulib modules used by this package.
30 gnulib_modules="$avoided_gnulib_modules
31 `grep '^[^#]' gnulib.modules`
32 "
33
34 # Additional xgettext options to use. Use "\\\newline" to break lines.
35 XGETTEXT_OPTIONS=$XGETTEXT_OPTIONS'\\\
36 --flag=_:1:pass-c-format\\\
37 --flag=N_:1:pass-c-format\\\
38 --flag=error:3:c-format --flag=error_at_line:5:c-format\\\
39 --flag=asnprintf:3:c-format --flag=vasnprintf:3:c-format\\\
40 --flag=argp_error:2:c-format\\\
41 --flag=__argp_error:2:c-format\\\
42 --flag=argp_failure:4:c-format\\\
43 --flag=__argp_failure:4:c-format\\\
44 --flag=argp_fmtstream_printf:2:c-format\\\
45 --flag=__argp_fmtstream_printf:2:c-format\\\
46 '
47
48 # Gettext supplies these files, but we don't need them since
49 # we don't have an intl subdirectory.
50 excluded_files='
51 m4/glibc2.m4
52 m4/intdiv0.m4
53 m4/lcmessage.m4
54 m4/lock.m4
55 m4/printf-posix.m4
56 m4/uintmax_t.m4
57 m4/ulonglong.m4
58 m4/visibility.m4
59 '
60
61 # Read local configuration file
62 if [ -r .bootstrap ]; then
63 echo "$0: Reading configuration file .bootstrap"
64 eval set -- "`sed 's/#.*$//;/^$/d' .bootstrap | tr '\n' ' '` $*"
65 fi
66
67 test -d m4 || mkdir m4
68 test -d $source_base || mkdir $source_base
69
70 test -f ChangeLog || cat > ChangeLog <<EOT
71 This file is a placeholder. It will be replaced with the actual ChangeLog
72 by make dist. Run make ChangeLog if you wish to create it earlier.
73 EOT
This page took 0.03331 seconds and 4 git commands to generate.