diff options
author | Benjamin Barenblat <bbaren@mit.edu> | 2016-12-31 18:32:55 -0600 |
---|---|---|
committer | Benjamin Barenblat <bbaren@mit.edu> | 2016-12-31 18:32:55 -0600 |
commit | 2823d1ebdd3a972e5130a10688eb6774bf608744 (patch) | |
tree | 1b0b152669a471220012633455fcf3a1cee3de52 | |
parent | 1ffbc0b872ba861643096de3a9da9a1a1cccd236 (diff) |
Build position-independent20161022+dfsg-2
Now that Debian #837567 has been resolved, build urweb(1) and its
associated libraries as PIC.
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | debian/rules | 12 |
2 files changed, 10 insertions, 8 deletions
diff --git a/debian/changelog b/debian/changelog index 4c30ce18..1e8b0747 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +urweb (20161022+dfsg-2) unstable; urgency=medium + + * Build position-independent. (Closes: #844891) + + -- Benjamin Barenblat <bbaren@mit.edu> Sat, 31 Dec 2016 17:35:18 -0600 + urweb (20161022+dfsg-1) unstable; urgency=medium * New upstream release. diff --git a/debian/rules b/debian/rules index 575fb3ed..cd3f8296 100755 --- a/debian/rules +++ b/debian/rules @@ -7,16 +7,12 @@ DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) # Avoid overlinking and reduce library dependencies. export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed -# Harden SML executables. Do not build position-independent executables, -# though; urweb depends on the MLton runtime, which is not built position- -# independent in Debian (#837567). -export DEB_BUILD_MAINT_OPTIONS := hardening=+all,-pie +# Harden SML executables. +export DEB_BUILD_MAINT_OPTIONS := hardening=+all export MLTONARGS := \ -cc-opt "$(shell dpkg-buildflags --get CPPFLAGS) \ - $(shell dpkg-buildflags --get CFLAGS) \ - -no-pie" \ - -link-opt "$(shell dpkg-buildflags --get LDFLAGS) \ - -no-pie" + $(shell dpkg-buildflags --get CFLAGS)" \ + -link-opt "$(shell dpkg-buildflags --get LDFLAGS)" %: dh $@ --parallel --with autoreconf |