blob: 34803d0cf26248864e5e19fbb6437b85acf4b741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- Makefile.in.orig 2007-11-30 16:49:56.000000000 -0800
+++ Makefile.in 2007-11-30 16:53:49.000000000 -0800
@@ -55,6 +55,7 @@
prefix = $(DESTDIR)@prefix@
datarootdir = $(DESTDIR)@datarootdir@
mandir = $(DESTDIR)@mandir@
+libdir = $(DESTDIR)@libdir@
exec_prefix = $(DESTDIR)@exec_prefix@
VPATH = $(srcdir)
@@ -893,8 +894,8 @@
install -m 644 $(srcdir)/include/pvfs2-util.h $(prefix)/include
install -m 644 $(srcdir)/include/pvfs2-encode-stubs.h $(prefix)/include
- install -d $(prefix)/lib
- install -m 755 $(LIBRARIES) $(prefix)/lib
+ install -d $(libdir)
+ install -m 755 $(LIBRARIES) $(libdir)
ifdef TARGET_OS_DARWIN
# TOC needs to be regenerated in libs after they get moved
|