8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc24636 commit c3fa281Copy full SHA for c3fa281
debian/rules
@@ -7,8 +7,14 @@ endif
7
MAJOR_VER := 9.3
8
9
DEB_BUILD_ARCH = $(shell dpkg-architecture -qDEB_BUILD_ARCH)
10
+
11
+# find tclconfig in multi-arch location (still in /usr/lib in wheezy and precise)
12
DEB_HOST_MULTIARCH = $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
13
+ifneq ($(wildcard /usr/lib/$(DEB_HOST_MULTIARCH)/tcl$(TCL_VER)),)
14
TCL_CONFIG_DIR := /usr/lib/$(DEB_HOST_MULTIARCH)
15
+else
16
+TCL_CONFIG_DIR := /usr/lib
17
+endif
18
19
# support both hardening-wrapper (for backports) and dpkg-buildflags
20
export DEB_BUILD_HARDENING = 1
0 commit comments