mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-04-20 06:20:20 +02:00
use correct Section: libs rather than misc compatiblity with dh_dwz / dwz - https://github.com/GrapheneOS/hardened_malloc/issues/85 move to sub folder /usr/lib/libhardened_malloc.so so lintian will not complain about non-versioned shared objects and missing symlinks. That extra complexity is not needed here since this lib aims to be compatible with what it replaces. full path is now /usr/lib/libhardened_malloc.so/libhardened_malloc.so deprecate no longer needed make_all_hook_post as this was improved in genmkfile
19 lines
430 B
Makefile
Executable file
19 lines
430 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
## Copyright (C) 2016 - 2016 Patrick Schleizer <adrelanos@riseup.net>
|
|
## See the file COPYING for copying conditions.
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
DPKG_EXPORT_BUILDFLAGS = 1
|
|
include /usr/share/dpkg/buildflags.mk
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_installchangelogs:
|
|
dh_installchangelogs changelog.upstream upstream
|
|
|
|
override_dh_auto_build:
|
|
dh_auto_build -- CONFIG_NATIVE=false
|