From a99f6372803a3029ececca3060c19a789bfb6198 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sat, 7 Apr 2012 11:46:07 +0200 Subject: [PATCH] Use right install location on Debian based systems on x86_64. --- Makeconfig | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makeconfig b/Makeconfig index add169a2b..061a86400 100644 --- a/Makeconfig +++ b/Makeconfig @@ -15,10 +15,14 @@ CC = gcc CFLAGS ?= -O2 -fPIC -pipe MACHINE = $(shell uname -m) -ifeq "$(MACHINE)" "x86_64" +ifeq "$(DEBIAN)" "0" + ifeq "$(MACHINE)" "x86_64" LIBDIR = $(PREFIX)/lib64 -else + else LIBDIR = $(PREFIX)/lib + endif +else + LIBDIR = $(PREFIX)/lib endif # Get the version and configuration of the python interpreter. -- 2.39.5