dpkg-deb: Rename r variables for fd_read() call chain return value to rc
[dpkg.git] / scripts / mk / buildopts.mk
blobc957777193c6e098712a8a9970577fcd9cfe42c4
1 # This Makefile fragment (since dpkg 1.20.1) parses option arguments from
2 # DEB_BUILD_OPTIONS, and exposes these as variables.
4 # Defines the following variables:
6 # DEB_BUILD_OPTION_PARALLEL: the argument for the parallel=N option.
8 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
9 DEB_BUILD_OPTION_PARALLEL = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
10 endif