Browse Source

- fix MAINTAINER; remove double .NOTPARALLEL

master
vanhofen 4 years ago
parent
commit
661a4fe8cc
  1. 8
      Makefile
  2. 1
      make/environment-build.mk

8
Makefile

@ -3,7 +3,8 @@
# #
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
MAINTAINER := $(shell whoami) MAINTAINER ?= unknown
UID := $(shell id -u) UID := $(shell id -u)
ifeq ($(UID),0) ifeq ($(UID),0)
warn: warn:
@ -228,9 +229,4 @@ PHONY += printenv help done all everything
PHONY += .print-phony PHONY += .print-phony
.PHONY: $(PHONY) .PHONY: $(PHONY)
# this makes sure we do not build top-level dependencies in parallel
# (which would not be too helpful anyway, running many configure and
# downloads in parallel...), but the sub-targets are still built in
# parallel, which is useful on multi-processor / multi-core machines
.NOTPARALLEL:
endif endif

1
make/environment-build.mk

@ -98,7 +98,6 @@ endif
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
BASE_DIR := $(shell pwd) BASE_DIR := $(shell pwd)
MAINTAINER ?= unknown
WHOAMI := $(shell id -un) WHOAMI := $(shell id -un)
DL_DIR = $(BASE_DIR)/download DL_DIR = $(BASE_DIR)/download
BUILD_DIR = $(BASE_DIR)/build_tmp BUILD_DIR = $(BASE_DIR)/build_tmp

Loading…
Cancel
Save