Skip to content

Commit

Permalink
Configure Python with --enable-unicode=ucs4
Browse files Browse the repository at this point in the history
Bulk update all Dockerfiles with the following command:

```bash
find . -name 'Dockerfile' | xargs sed -i '' 's/--enable-shared/--enable-shared --enable-unicode=ucs4/g'
```
  • Loading branch information
Hans Kristian Flaatten committed Feb 26, 2015
1 parent 1fc7717 commit 542719b
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion 2.7/Dockerfile
Expand Up @@ -20,7 +20,7 @@ RUN set -x \
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
&& rm python.tar.xz* \
&& cd /usr/src/python \
&& ./configure --enable-shared \
&& ./configure --enable-shared --enable-unicode=ucs4 \
&& make -j$(nproc) \
&& make install \
&& ldconfig \
Expand Down
2 changes: 1 addition & 1 deletion 2.7/slim/Dockerfile
Expand Up @@ -28,7 +28,7 @@ RUN set -x \
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
&& rm python.tar.xz* \
&& cd /usr/src/python \
&& ./configure --enable-shared \
&& ./configure --enable-shared --enable-unicode=ucs4 \
&& make -j$(nproc) \
&& make install \
&& ldconfig \
Expand Down
2 changes: 1 addition & 1 deletion 2.7/wheezy/Dockerfile
Expand Up @@ -20,7 +20,7 @@ RUN set -x \
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
&& rm python.tar.xz* \
&& cd /usr/src/python \
&& ./configure --enable-shared \
&& ./configure --enable-shared --enable-unicode=ucs4 \
&& make -j$(nproc) \
&& make install \
&& ldconfig \
Expand Down
2 changes: 1 addition & 1 deletion 3.3/Dockerfile
Expand Up @@ -20,7 +20,7 @@ RUN set -x \
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
&& rm python.tar.xz* \
&& cd /usr/src/python \
&& ./configure --enable-shared \
&& ./configure --enable-shared --enable-unicode=ucs4 \
&& make -j$(nproc) \
&& make install \
&& ldconfig \
Expand Down
2 changes: 1 addition & 1 deletion 3.3/slim/Dockerfile
Expand Up @@ -28,7 +28,7 @@ RUN set -x \
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
&& rm python.tar.xz* \
&& cd /usr/src/python \
&& ./configure --enable-shared \
&& ./configure --enable-shared --enable-unicode=ucs4 \
&& make -j$(nproc) \
&& make install \
&& ldconfig \
Expand Down
2 changes: 1 addition & 1 deletion 3.3/wheezy/Dockerfile
Expand Up @@ -20,7 +20,7 @@ RUN set -x \
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
&& rm python.tar.xz* \
&& cd /usr/src/python \
&& ./configure --enable-shared \
&& ./configure --enable-shared --enable-unicode=ucs4 \
&& make -j$(nproc) \
&& make install \
&& ldconfig \
Expand Down
2 changes: 1 addition & 1 deletion 3.4/Dockerfile
Expand Up @@ -20,7 +20,7 @@ RUN set -x \
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
&& rm python.tar.xz* \
&& cd /usr/src/python \
&& ./configure --enable-shared \
&& ./configure --enable-shared --enable-unicode=ucs4 \
&& make -j$(nproc) \
&& make install \
&& ldconfig \
Expand Down
2 changes: 1 addition & 1 deletion 3.4/slim/Dockerfile
Expand Up @@ -28,7 +28,7 @@ RUN set -x \
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
&& rm python.tar.xz* \
&& cd /usr/src/python \
&& ./configure --enable-shared \
&& ./configure --enable-shared --enable-unicode=ucs4 \
&& make -j$(nproc) \
&& make install \
&& ldconfig \
Expand Down
2 changes: 1 addition & 1 deletion 3.4/wheezy/Dockerfile
Expand Up @@ -20,7 +20,7 @@ RUN set -x \
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
&& rm python.tar.xz* \
&& cd /usr/src/python \
&& ./configure --enable-shared \
&& ./configure --enable-shared --enable-unicode=ucs4 \
&& make -j$(nproc) \
&& make install \
&& ldconfig \
Expand Down

0 comments on commit 542719b

Please sign in to comment.