Check-in [9608a4d5cf]
Overview
Comment:Updated to correctly build release output Removed extraneous file
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 9608a4d5cf4e07276771556728cef1952b934818
User & Date: rkeene on 2011-09-09 14:32:06.000
Other Links: manifest | tags
Context
2011-09-09
14:32
Clean up build-related source check-in: 424c69792c user: rkeene tags: trunk
14:32
Updated to correctly build release output Removed extraneous file check-in: 9608a4d5cf user: rkeene tags: trunk
14:20
Updated to support release build system check-in: 43aebb6a2b user: rkeene tags: trunk
Changes
1






2
3
4
5
6
7
#! /bin/bash







cat aclocal/*.m4 > aclocal.m4 || exit 1
autoconf || exit 1
rm -rf autom4te.cache/

exit 0

>
>
>
>
>
>






1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/bash

if [ -n "${VERS}" ]; then
	sed "s|@@VERS@@|${VERS}|g" configure.ac > configure.ac.new
	cat configure.ac.new > configure.ac
	rm -f configure.ac.new
fi

cat aclocal/*.m4 > aclocal.m4 || exit 1
autoconf || exit 1
rm -rf autom4te.cache/

exit 0
29
30
31
32
33
34
35



36
37
38
39
40
41
42
43

# These files follow the same convention as DOCS, but don't have the header
# tacked onto them.
UPDATE_VARS="configure.ac"

# This script is executed immediately after copying the files
# to a temp directory to attempt to compile



BEFORE="build/autogen.sh"

# This script is executed immediately prior to creation of the
# tarball
AFTER=""

# Files matching these (space-seperated) patterns are deleted
TMPS="*.out HEADER build"







>
>
>
|







29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

# These files follow the same convention as DOCS, but don't have the header
# tacked onto them.
UPDATE_VARS="configure.ac"

# This script is executed immediately after copying the files
# to a temp directory to attempt to compile
BEFORE=""

# This script is executed after updating variables
UPDATED="build/autogen.sh"

# This script is executed immediately prior to creation of the
# tarball
AFTER=""

# Files matching these (space-seperated) patterns are deleted
TMPS="*.out HEADER build"
Deleted ctk.tcl version [e5557e7784].