mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
e267e167db
In order to build a debian package with upstream source, the user should do ./autogen.sh cp -a debian.upstream debian debuild -eDEB_BUILD_OPTIONS="parallel=8" -us -uc -b The environment variable DEB_BUILD_OPTIONS="parallel=8" is the canonical way to make a parallel build (-j8 in this case). This commit removes the script in debian/rules that detects the number of cpus, requested by the environment variable DEBIAN_BUILD_NCPUS, which is not official in debian. Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com> https://bugzilla.gnome.org/show_bug.cgi?id=754087
18 lines
587 B
Makefile
Executable file
18 lines
587 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
|
include /usr/share/cdbs/1/class/autotools.mk
|
|
include /usr/share/cdbs/1/rules/simple-patchsys.mk
|
|
include /usr/share/cdbs/1/rules/utils.mk
|
|
|
|
# Allow HTML documentation build
|
|
indep_conf_flags = \
|
|
--with-html-dir=\$${prefix}/share/doc/$(DEB_SOURCE_PACKAGE)
|
|
|
|
# only build the docs if gtk-doc-tools is installed, i.e. binary-indep is
|
|
# called
|
|
ifeq ($(shell test "`dpkg -l gtk-doc-tools | grep ^ii`" && echo binary-indep),binary-indep)
|
|
indep_conf_flags += --enable-gtk-doc
|
|
endif
|
|
|
|
DEB_CONFIGURE_EXTRA_FLAGS += $(indep_conf_flags)
|