mirror of
https://github.com/fluencelabs/redis
synced 2025-07-21 19:41:57 +00:00
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
18 lines
266 B
Bash
18 lines
266 B
Bash
![]() |
#!/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
|