1
1
This commit was SVN r29620.
Этот коммит содержится в:
Ralph Castain 2013-11-06 20:22:38 +00:00
родитель 07077fe28b
Коммит 5dc34fa2b6

Просмотреть файл

@ -1,12 +0,0 @@
#!/bin/sh
if [ $# -lt 1 ] ; then
echo "usage: gpconfig -vpath <prefix>"
exit 1
fi
if [ $1 = "-vpath" ] ; then
../autogen.pl -no-ompi && ../configure --prefix=$1 --with-platform=../contrib/platform/greenplum/nmon/linux && rm -rf $1 && make clean > /dev/null && make -j6 all > /dev/null && make -j6 install > /dev/null
else
./autogen.pl -no-ompi && ./configure --prefix=$1 --with-platform=./contrib/platform/greenplum/nmon/linux && rm -rf $1 && make clean > /dev/null && make -j6 all > /dev/null && make -j6 install > /dev/null
fi