Server IP : 195.201.23.43 / Your IP : 13.59.218.38 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/dpkg/ |
Upload File : |
# Makefile snippet defining the following vendor-related variables: # # DEB_VENDOR: output of dpkg-vendor --query Vendor # DEB_PARENT_VENDOR: output of dpkg-vendor --query Parent (can be empty) # # This Makefile snippet also defines a set "dpkg_vendor_derives_from" # macros that can be used to verify if the current vendor derives from # another vendor. The unversioned variant defaults to the v0 version if # undefined, which can be defined explicitly to one of the versions or the # versioned macros can be used directly. The following are example usages: # # - dpkg_vendor_derives_from (since dpkg 1.16.1) # # ifeq ($(shell $(call dpkg_vendor_derives_from,ubuntu)),yes) # ... # endif # # - dpkg_vendor_derives_from_v0 (since dpkg 1.19.3) # # ifeq ($(shell $(call dpkg_vendor_derives_from_v0,ubuntu)),yes) # ... # endif # # - dpkg_vendor_derives_from_v1 (since dpkg 1.19.3) # # dpkg_vendor_derives_from = $(dpkg_vendor_derives_from_v1) # ifeq ($(call dpkg_vendor_derives_from,ubuntu),yes) # ... # endif # ifeq ($(call dpkg_vendor_derives_from_v1,ubuntu),yes) # ... # endif dpkg_late_eval ?= $(or $(value DPKG_CACHE_$(1)),$(eval DPKG_CACHE_$(1) := $(shell $(2)))$(value DPKG_CACHE_$(1))) DEB_VENDOR = $(call dpkg_late_eval,DEB_VENDOR,dpkg-vendor --query Vendor) DEB_PARENT_VENDOR = $(call dpkg_late_eval,DEB_PARENT_VENDOR,dpkg-vendor --query Parent) dpkg_vendor_derives_from_v0 = dpkg-vendor --derives-from $(1) && echo yes || echo no dpkg_vendor_derives_from_v1 = $(shell $(dpkg_vendor_derives_from_v0)) dpkg_vendor_derives_from ?= $(dpkg_vendor_derives_from_v0)Private