mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
fix multilib complaints on gentoo
This commit is contained in:
parent
d16deca449
commit
692296ca81
1 changed files with 7 additions and 0 deletions
|
@ -1,4 +1,11 @@
|
||||||
|
MACHINE := $(shell uname -m)
|
||||||
|
|
||||||
|
ifeq ($(MACHINE), x86_64)
|
||||||
|
libdir = ${PREFIX}/lib64
|
||||||
|
endif
|
||||||
|
ifeq ($(MACHINE), i686)
|
||||||
libdir = ${PREFIX}/lib
|
libdir = ${PREFIX}/lib
|
||||||
|
endif
|
||||||
|
|
||||||
INSTALL = install
|
INSTALL = install
|
||||||
LIBS = libpsyc.a libpsyc.so
|
LIBS = libpsyc.a libpsyc.so
|
||||||
|
|
Loading…
Reference in a new issue