Skip to content

Commit

Permalink
fixed syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
mbhangui committed Apr 16, 2023
1 parent 3321abb commit 2f1bce4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
10 changes: 3 additions & 7 deletions indimail-src/stream8.src
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,8 @@ RUN export HOSTNAME=indimail.org MYSQL_SOCKET=/run/mysqld/mysqld.sock \
rsync systemd telnet vim strace lsof mrtg patch \
&& (set -e; \
cd /usr/local/srctmp; \
git clone --no-tags --no-recurse-submodules --depth=1 https://github.com/mbhangui/libqmail.git; \
git clone --no-tags --no-recurse-submodules --depth=1 https://github.com/mbhangui/indimail-mta.git; \
git clone --no-tags --no-recurse-submodules --depth=1 https://github.com/mbhangui/ezmlm-idx.git; \
git clone --no-tags --no-recurse-submodules --depth=1 https://github.com/mbhangui/tinydnssec.git; \
git clone --no-tags --no-recurse-submodules --depth=1 https://github.com/mbhangui/indimail-virtualdomains.git; \
git clone --no-tags --no-recurse-submodules --depth=1 https://github.com/mbhangui/indimail-docker.git; \
for i in libqmail indimail-mta ezmlm-idx tinydnssec indimail-virtualdomains indimail-docker; \
do git clone --no-tags --no-recurse-submodules --depth=1 https://github.com/mbhangui/$i.git; done; \
git clone git://linux-nfs.org/~steved/libtirpc; \
# gsasl
wget -nv https://ftpmirror.gnu.org/gsasl/gsasl-2.2.0.tar.gz; \
Expand All @@ -35,7 +31,7 @@ RUN export HOSTNAME=indimail.org MYSQL_SOCKET=/run/mysqld/mysqld.sock \
patch -p0 < indimail-docker/patches/gsasl-2.2.0.patch; \
cd /usr/local/srctmp/gsasl-2.2.0; \
./configure --prefix=/usr --with-libgcrypt --enable-gs2 --with-gssapi-impl=mit; \
make; make install-strip
make; make install-strip; \
# libtirpc
cd /usr/local/srctmp/libtirpc; \
./bootstrap; \
Expand Down
2 changes: 1 addition & 1 deletion indimail-src/stream9.src
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN export HOSTNAME=indimail.org MYSQL_SOCKET=/run/mysqld/mysqld.sock \
&& (set -e; \
cd /usr/local/srctmp; \
for i in libqmail indimail-mta ezmlm-idx tinydnssec indimail-virtualdomains indimail-docker; \
do git clone --no-tags --no-recurse-submodules --depth=1 https://github.com/mbhangui/$i.git; done
do git clone --no-tags --no-recurse-submodules --depth=1 https://github.com/mbhangui/$i.git; done; \
git clone git://linux-nfs.org/~steved/libtirpc; \
# gsasl
wget -nv https://ftpmirror.gnu.org/gsasl/gsasl-2.2.0.tar.gz; \
Expand Down

0 comments on commit 2f1bce4

Please sign in to comment.