blob: e33d2355c618eee9811ab6fef1afba970e040f27 (
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
37
38
39
40
|
#!/bin/sh
# When run from the top-level repository, performs a complete clean
# and maintainer-mode rebuild of the FireHOL package.
if [ ! -f .gitignore -o ! -f configure.ac -o ! -x autogen.sh ]
then
echo "Run as ./packaging/git-build from an autotools git repository"
exit 1
fi
# If we are genuinely in a git repo, try to clean it up, otherwise
# just make the assumption
if [ -d .git ]
then
clean=$(git status -s | grep "^?")
if [ "$clean" ]
then
if [ "$1" != "-ok" ]
then
echo "Warning: this script runs: git clean -d -f -x"
echo " ensure all required ?? files are added, then re-run with '-ok'"
git status -s | grep '^?'
exit 1
fi
fi
set -e
git clean -d -f -x
set +e
fi
set -e
./autogen.sh
./configure --enable-maintainer-mode
set +e
make dist
status=$?
exit $status
|