Skip to content

Commit bd2c8ec

Browse files
committed
fix: Set proper install prefix
Signed-off-by: Julius Knorr <jus@bitgrid.net>
1 parent 40f6dfe commit bd2c8ec

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

translations/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ RUN curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh |
2727

2828
# Install newer gettext version from source
2929
RUN curl -L https://ftp.gnu.org/pub/gnu/gettext/gettext-${GETTEXT_VERSION}.tar.gz -o /tmp/gettext-${GETTEXT_VERSION}.tar.gz \
30-
&& tar -xzf /tmp/gettext-${GETTEXT_VERSION}.tar.gz -C /tmp \
31-
&& cd /tmp/gettext-${GETTEXT_VERSION} \
32-
&& ./configure \
30+
&& tar -xzf /tmp/gettext-${GETTEXT_VERSION}.tar.gz -C /tmp
31+
32+
RUN cd /tmp/gettext-${GETTEXT_VERSION} \
33+
&& ./configure --prefix=/usr --libexecdir=/usr/lib \
3334
&& make \
3435
&& make install \
3536
&& rm -rf /tmp/gettext-${GETTEXT_VERSION}*

0 commit comments

Comments
 (0)