10000
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 393769e commit 36fef55Copy full SHA for 36fef55
debian/rules
@@ -7,8 +7,14 @@ endif
7
MAJOR_VER := 9.5
8
9
DEB_HOST_ARCH = $(shell dpkg-architecture -qDEB_HOST_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