1
0
mirror of https://github.com/fluencelabs/redis synced 2025-07-21 19:41:57 +00:00
Files
deps
hiredis
jemalloc
bin
doc
include
src
test
.gitignore
COPYING
ChangeLog
INSTALL
Makefile.in
README
VERSION
autogen.sh
config.guess
config.stamp.in
config.sub
configure
configure.ac
install-sh
linenoise
lua
Makefile
src
tests
utils
.gitignore
00-RELEASENOTES
BUGS
CONTRIBUTING
COPYING
INSTALL
MANIFESTO
Makefile
README
redis.conf
runtest
runtest-cluster
runtest-sentinel
sentinel.conf
redis/deps/jemalloc/autogen.sh

18 lines
266 B
Bash
Raw Normal View History

2011-05-09 10:52:55 +02:00
#!/bin/sh
for i in autoconf; do
echo "$i"
$i
if [ $? -ne 0 ]; then
echo "Error $? in $i"
exit 1
fi
done
echo "./configure --enable-autogen $@"
./configure --enable-autogen $@
if [ $? -ne 0 ]; then
echo "Error $? in ./configure"
exit 1
fi