The following changes were made:

* Moved .so files to /lib so they'd be available without /usr
This commit is contained in:
2017-03-25 16:42:57 -05:00
parent d99e8837e5
commit 97a214e7e1

View File

@@ -13,7 +13,7 @@ ARCH = x86_64
URL = http://www.mpfr.org/ URL = http://www.mpfr.org/
DESC = The MPFR library is a C library for multiple-precision floating-point \ DESC = The MPFR library is a C library for multiple-precision floating-point \
computations with correct rounding. computations with correct rounding.
SNAPVER = 2 SNAPVER = 3
ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1) ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1)
TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n') TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n')
@@ -46,6 +46,7 @@ $(SRCDIR)/config.log: $(SRCDIR)/configure
@cd $(SRCDIR); \ @cd $(SRCDIR); \
./configure \ ./configure \
--prefix=/usr \ --prefix=/usr \
--libdir=/lib \
--disable-static \ --disable-static \
-enable-thread-safe \ -enable-thread-safe \
--build=x86_64-snap-linux-gnu \ --build=x86_64-snap-linux-gnu \