Skip to content

Commit

Permalink
Don't -j8
Browse files Browse the repository at this point in the history
  • Loading branch information
alecthomas committed Jan 20, 2023
1 parent 6ac47b0 commit 3c773c7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pkgs/diffutils/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ configure:
./configure --prefix=/ --disable-rpath

build:
$(MAKE) -j8
$(MAKE)

install:
$(MAKE) DESTDIR=$(DESTDIR) install
$(MAKE) DESTDIR=$(DESTDIR) install
2 changes: 1 addition & 1 deletion pkgs/libffi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ configure:
./configure --prefix=/ --disable-shared

build:
$(MAKE) -j8
$(MAKE)

install:
$(MAKE) DESTDIR=$(DESTDIR) install
2 changes: 1 addition & 1 deletion pkgs/libressl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ configure:
./configure --prefix=/ --disable-shared

build:
$(MAKE) -j8
$(MAKE)

install:
$(MAKE) DESTDIR=$(DESTDIR) install
2 changes: 1 addition & 1 deletion pkgs/libyaml/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ configure:
./configure --prefix=/ --disable-shared

build:
$(MAKE) -j8
$(MAKE)

install:
$(MAKE) DESTDIR=$(DESTDIR) install
2 changes: 1 addition & 1 deletion pkgs/make/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SOURCE = https://ftpmirror.gnu.org/make/make-$(VERSION).tar.gz
include $(shell git rev-parse --show-toplevel)/pkgs/build.mk

configure:
./configure --prefix=/ --disable-rpath
./configure --prefix=/ --disable-shared

build:
$(MAKE)
Expand Down

0 comments on commit 3c773c7

Please sign in to comment.