blob: d65217de8667f8a960852533154fd359890c2685 (
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
|
# This script requires autoconf-2.57 and automake-1.7.2 in the PATH.
aclocal
autoconf
automake
(cd autoconf-lib-link
aclocal -I m4 -I ../config/m4
autoconf
automake
)
(cd gettext-runtime
aclocal -I m4 -I ../gettext-tools/m4 -I ../autoconf-lib-link/m4 -I ../config/m4
autoconf
autoheader
automake
)
(cd gettext-runtime/libasprintf
aclocal -I ../../config/m4 -I ../m4
autoconf
autoheader
automake
)
cp -p gettext-runtime/ABOUT-NLS gettext-tools/ABOUT-NLS
(cd gettext-tools
aclocal -I m4 -I ../gettext-runtime/m4 -I ../autoconf-lib-link/m4 -I ../config/m4
autoconf
autoheader
automake
)
cp -p autoconf-lib-link/config.rpath config/config.rpath
|