summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Hoffmann <mhoffmann@pro-nets.de>2021-01-18 16:47:51 +0100
committerAndras Timar <andras.timar@collabora.com>2021-01-26 13:59:26 +0100
commitfff344afed29b0e8d325285cbfb6a253acfc165a (patch)
treee8f57904572101b53746f0056a4910522e07c571
parentCorrect description of handling of the DEBUG message from the client (diff)
downloadonline-fff344afed29b0e8d325285cbfb6a253acfc165a.tar.gz
online-fff344afed29b0e8d325285cbfb6a253acfc165a.zip
fix build.sh: wrong directory after poco install
After compiling and installing poco the script is left in the wrong path, resulting core to be deployed underneath poco directory which breaks configure --with-lo-path later on. Signed-off-by: Martin Hoffmann <mhoffmann@pro-nets.de> Change-Id: I46c5b77e44eebead08c8a7fb857c229900a23570
-rwxr-xr-xdocker/from-source/build.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/docker/from-source/build.sh b/docker/from-source/build.sh
index 75a07c3481..30daa0f64a 100755
--- a/docker/from-source/build.sh
+++ b/docker/from-source/build.sh
@@ -82,6 +82,7 @@ if test ! -f poco/lib/libPocoFoundation.a ; then
./configure --static --no-tests --no-samples --no-sharedlibs --cflags="-fPIC" --omit=Zip,Data,Data/SQLite,Data/ODBC,Data/MySQL,MongoDB,PDF,CppParser,PageCompiler,Redis,Encodings --prefix=$BUILDDIR/poco
make -j 8
make install
+ cd ..
fi