Skip to content
Snippets Groups Projects
Commit 55ec3996 authored by Guido Günther's avatar Guido Günther
Browse files

Don't try to configure systemtap support

on architectures lacking support for it.
parent aad40d9e
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,11 @@ ifneq (,$(findstring $(DEB_HOST_ARCH_OS), linux))
WITH_SANLOCK = --with-sanlock
WITH_INIT_SCRIPT = --with-init-script=systemd
WITH_AUDIT = --with-audit
WITH_DTRACE = --with-dtrace
ifneq (,$(findstring $(DEB_HOST_ARCH), amd64 armel armhf i386 ia64 powerpc s390))
WITH_DTRACE = --with-dtrace
else
WITH_DTRACE = --without-dtrace
endif
ifneq (,$(findstring $(DEB_HOST_ARCH), amd64 i386 ia64 mips mipsel powerpc))
WITH_NUMA = --with-numactl
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment