diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-02-04 18:53:25 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-02-09 23:38:11 +0000 |
commit | 4a01be659888c4a6a0eeb8396a3521ee759a7e20 (patch) | |
tree | ef7c83b90ee12ba243432af0be8dc46b56381e1a /debian/rules | |
parent | 0ae1fd5d3aab62a144e2764d86f04b6b60995054 (diff) | |
download | nx-libs-4a01be659888c4a6a0eeb8396a3521ee759a7e20.tar.gz nx-libs-4a01be659888c4a6a0eeb8396a3521ee759a7e20.tar.bz2 nx-libs-4a01be659888c4a6a0eeb8396a3521ee759a7e20.zip |
debian/rules: Don't manually override SHLIBDIR via the dh_auto_build call. The default in the main Makefile should work fine.
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index d30574c07..180de6984 100755 --- a/debian/rules +++ b/debian/rules @@ -51,7 +51,7 @@ override_dh_auto_install: override_dh_auto_build: - PREFIX=/usr dh_auto_build --parallel -- CDEBUGFLAGS="$(CPPFLAGS) $(CFLAGS)" LOCAL_LDFLAGS="$(LDFLAGS)" SHLIBGLOBALSFLAGS='$(filter-out -pie,$(LDFLAGS))' SHLIBDIR="$(LIBDIR)" + PREFIX=/usr dh_auto_build --parallel -- CDEBUGFLAGS="$(CPPFLAGS) $(CFLAGS)" LOCAL_LDFLAGS="$(LDFLAGS)" SHLIBGLOBALSFLAGS='$(filter-out -pie,$(LDFLAGS))' override_dh_strip: dh_strip -plibnx-x11-6 --dbg-package=libnx-x11-6-dbg |