We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 551db7b commit e71141cCopy full SHA for e71141c
postgresql-10/build.sh
@@ -1,4 +1,4 @@
1
-#!/bin/bash
+#!/bin/bash -e
2
3
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
4
cd ${DIR}
@@ -21,7 +21,10 @@ tar xjf postgresql-${VERSION}.tar.bz2
21
cd postgresql-${VERSION}
22
rm -rf ${PREFIX}
23
24
-./configure --prefix ${PREFIX} LDFLAGS=-static
+./configure --prefix ${PREFIX}
25
+make world
26
+make install
27
+./configure --prefix ${PREFIX} LDFLAGS=-static --disable-shared
28
make world
29
make install
30
0 commit comments