Check-in [131645cec4]
Overview
Comment:Moved M4 fetching to autogen
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 131645cec4754221a3680f4f8216b73c04858de5
User & Date: rkeene on 2014-05-01 21:50:31
Other Links: manifest | tags
Context
2014-05-01
21:56
Updated to generate files check-in: 4d5caafa3d user: rkeene tags: trunk
21:50
Moved M4 fetching to autogen check-in: 131645cec4 user: rkeene tags: trunk
21:49
Initial skeleton with patch for tcltcc-0.4 check-in: 9c68da7718 user: rkeene tags: trunk
Changes

Modified build/autogen.sh from [da7da84b9f] to [875a46fcf2].

1













2
3
4
5





#! /bin/bash














aclocal -I aclocal
autoconf
rm -rf autom4te.cache






>
>
>
>
>
>
>
>
>
>
>
>
>




>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/bash

# Download latest copy of autoconf macros
(
	cd aclocal || exit 1

	for file in shobj.m4 tcl.m4 versionscript.m4; do
		rm -f "${file}"

		wget -O "${file}.new" "http://rkeene.org/devel/autoconf/${file}.m4" || continue

		mv "${file}.new" "${file}"
	done
)

aclocal -I aclocal
autoconf
rm -rf autom4te.cache

for file in config.guess config.sub install-sh; do
	...
done

Modified build/pre.sh from [27b94ef2cb] to [7fa536bdae].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/bash

cd "$(dirname "$(which "$0")")/.." || exit 1

# Download latest copy of autoconf macros
(
	cd aclocal || exit 1

	for file in shobj.m4 tcl.m4 versionscript.m4; do
		rm -f "${file}"

		wget -O "${file}.new" "http://rkeene.org/devel/autoconf/${file}.m4" || continue

		mv "${file}.new" "${file}"
	done
)

# Generate configure script
./build/autogen.sh




<
<
<
<
<
<
<
<
<
<
<
<
<


1
2
3
4













5
6
#! /bin/bash

cd "$(dirname "$(which "$0")")/.." || exit 1














# Generate configure script
./build/autogen.sh