File: bootstrap

package info (click to toggle)
schroot 1.2.2-0%2Blenny1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 21,912 kB
  • ctags: 10,843
  • sloc: cpp: 15,011; sh: 10,257; makefile: 543; perl: 108; sed: 16
file content (31 lines) | stat: -rwxr-xr-x 512 bytes parent folder | download
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
#!/bin/sh
if [ -d m4 ]; then
  :
else
  mkdir m4
fi
if [ -d scripts ]; then
  :
else
  mkdir scripts
fi
sed -e "s/@RELEASE_DATE@/`date '+%d %b %Y'`/" -e "s/@RELEASE_UDATE@/`date '+%s'`/" scripts/schroot_release.m4.in > m4/schroot_release.m4

# To satisfy automake
touch ChangeLog


echo "libtoolize"
libtoolize --force --copy
echo "autopoint"
autopoint --force
echo "aclocal -I m4"
aclocal -I m4
echo "autoheader"
autoheader
echo "automake"
automake --add-missing --gnu --force --copy
echo "autoconf"
autoconf