Changes between Initial Version and Version 1 of Ticket #1933, comment 3
- Timestamp:
- 06/04/17 06:21:19 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1933, comment 3
initial v1 2 2 3 3 It's likely that the PIE option for libgdal-grass was not disabled for the Ubuntu build causing this issue. 4 5 The buildlog confirms this: 6 {{{ 7 g++ -Wall -fPIC [...] -fPIE -fstack-protector-strong -Wformat -Werror=format-security -c -o ogrgrassdriver.o ogrgrassdriver.cpp 8 }}} 9 10 Add the following to `debian/rules` for libgdal-grass: 11 {{{ 12 # Disable PIE on Ubuntu where it's still problematic 13 VENDOR_DERIVES_FROM_UBUNTU ?= $(shell dpkg-vendor --derives-from Ubuntu && echo yes) 14 15 ifeq ($(VENDOR_DERIVES_FROM_UBUNTU),yes) 16 export DEB_BUILD_MAINT_OPTIONS=hardening=+all,-pie 17 endif 18 }}}