From: Michael Tremer Date: Sat, 7 Apr 2012 09:46:07 +0000 (+0200) Subject: Use right install location on Debian based systems on x86_64. X-Git-Tag: 0.9.22~18 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a99f6372803a3029ececca3060c19a789bfb6198;p=pakfire.git Use right install location on Debian based systems on x86_64. --- 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.