Skip to content

Commit b404061

Browse files
committed
CP-27898 remove -j $(JOBS) in Makefile
Signed-off-by: Christian Lindig <[email protected]>
1 parent 07fe597 commit b404061

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

INSTALL

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@
33

44
The easiest way to install is via opam:
55

6+
opam repo add xs-opam https://github.com/xapi-project/xs-opam.git
67
opam pin add .
8+

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
BINDIR ?= /usr/bin
22
SBINDIR ?= /usr/sbin
33
MANDIR ?= /usr/share/man/man1
4-
JOBS = $(shell getconf _NPROCESSORS_ONLN)
54
PROFILE=release
65

76

87
.PHONY: release build install uninstall clean test doc reindent
98

109
release:
11-
dune build @install @networkd/man --profile=$(PROFILE) -j $(JOBS)
10+
dune build @install @networkd/man --profile=$(PROFILE)
1211

1312
build:
14-
dune build @install @networkd/man -j $(JOBS)
13+
dune build @install @networkd/man
1514

1615
install:
1716
mkdir -p $(DESTDIR)$(SBINDIR)

0 commit comments

Comments
 (0)