Skip to content

Commit

Permalink
Go from -j4 to -j on most make calls
Browse files Browse the repository at this point in the history
  • Loading branch information
rhardih committed Apr 9, 2021
1 parent 1fdd6ec commit 633275b
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion curl/curl.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ RUN ./configure \
--host=$HOST \
--prefix=/curl-build/

RUN make -j4 && make install
RUN make -j && make install
2 changes: 1 addition & 1 deletion expat/expat.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ RUN ./configure \
--host=$HOST \
--prefix=/expat-build/

RUN make -j4 && make install
RUN make -j && make install
2 changes: 1 addition & 1 deletion gdal/gdal.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ RUN ./configure \
--host=$HOST \
--prefix=/gdal-build/

RUN make -j4 && make install
RUN make -j && make install
2 changes: 1 addition & 1 deletion geos/geos.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ RUN ./configure \
--host=$HOST \
--prefix=/geos-build/

RUN make -j4 && make install
RUN make -j && make install

2 changes: 1 addition & 1 deletion iconv/iconv.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ RUN ./configure \
--host=$HOST \
--prefix=/iconv-build/

RUN make -j4 && make install
RUN make -j && make install
2 changes: 1 addition & 1 deletion leptonica/leptonica.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ RUN ./configure \
--without-libopenjpeg \
--prefix=/leptonica-build/

RUN make -j4 && make install
RUN make -j && make install
2 changes: 1 addition & 1 deletion opencv/opencv.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ RUN cmake \
-D CMAKE_INSTALL_PREFIX:PATH=/opencv-build \
..

RUN make -j4 && make install
RUN make -j && make install
2 changes: 1 addition & 1 deletion proj/proj.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ RUN ./configure \
--host=$HOST \
--prefix=/proj-build/

RUN make -j4 && make install
RUN make -j && make install
2 changes: 1 addition & 1 deletion spatialite/spatialite.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ RUN CFLAGS=$(tr "\r\n" " " < cflags.tmp) \
--disable-examples \
--prefix=/spatialite-build/

RUN make -j4 && make install
RUN make -j && make install
2 changes: 1 addition & 1 deletion sqlite3/sqlite3.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ RUN ./configure \
--disable-tcl \
--prefix=/sqlite3-build/

RUN make -j4 && make install
RUN make -j && make install
2 changes: 1 addition & 1 deletion tesseract/tesseract-3.05.02.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ RUN ./configure \
--disable-largefile \
--prefix=/tesseract-build/

RUN make -j4 && make install
RUN make -j && make install
2 changes: 1 addition & 1 deletion tesseract/tesseract-4.0.0.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ RUN cmake \
-D CMAKE_CXX_FLAGS="-Qunused-arguments -Wl,-rpath-link,/tiff-build/lib" \
..

RUN make -j4
RUN make -j
RUN make install
2 changes: 1 addition & 1 deletion tiff/tiff.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ RUN ./configure \
--host=$HOST \
--prefix=/tiff-build/

RUN make -j4 && make install
RUN make -j && make install

# Fix b0rked .pc naming
RUN mv /tiff-build/lib/pkgconfig/libtiff-4.pc /tiff-build/lib/pkgconfig/tiff.pc
2 changes: 1 addition & 1 deletion udunits-2/udunits-2.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ RUN CFLAGS=$(pkg-config expat --cflags) \
--host=$HOST \
--prefix=/udunits-2-build/

RUN make -j4 && make install
RUN make -j && make install

0 comments on commit 633275b

Please sign in to comment.