repo.or.cz
/
gwave-svn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Clean up a slew of warnings from gcc -Wall - mostly unused variables.
[gwave-svn.git]
/
test-dist
blob
44d83925f0912b7b306e77185513cf19f06f98aa
1
#!/bin/sh
2
3
set -e -x
4
5
if
[
$#
!=
1
]
6
then
7
echo
"usage:
$0
tarfile"
1
>&
2
8
exit
1
9
fi
10
11
tarfile
=
$1
12
dtarfile
=
`pwd`
/
$tarfile
13
14
base
=
`basename
$tarfile
.tar.gz`
15
16
cd
/
tmp
17
tar
xzvf
$dtarfile
18
19
cd
/
tmp
/
$base
20
.
/
configure
--prefix
=/
tmp
/
gwave-test
21
gmake
22
gmake
install
23