36
37
38
39
40
41
42
43
44
45
46
|
BEFORE="build/pre.sh"
# This script is executed after updating variables
UPDATED=""
# This script is executed immediately prior to creation of the
# tarball
AFTER=""
# Files matching these (space-seperated) patterns are deleted
TMPS="*.out HEADER build autogen.sh"
|
|
|
|
36
37
38
39
40
41
42
43
44
45
46
|
BEFORE="build/pre.sh"
# This script is executed after updating variables
UPDATED=""
# This script is executed immediately prior to creation of the
# tarball
AFTER="build/post.sh"
# Files matching these (space-seperated) patterns are deleted
TMPS="*.out HEADER"
|