Fix installation path on FreeBSD and DragonFly (#1589)
This commit is contained in:
parent
aed212b618
commit
1849fb2196
4
Makefile
4
Makefile
|
@ -88,10 +88,10 @@ LIBDATADIR = $(LIBDIR)
|
|||
|
||||
ifndef USE_GENERIC_LIBDATADIR
|
||||
ifeq ($(UNAME_S), FreeBSD)
|
||||
LIBDATADIR = $(PREFIX)/libdata
|
||||
LIBDATADIR = $(DESTDIR)$(PREFIX)/libdata
|
||||
endif
|
||||
ifeq ($(UNAME_S), DragonFly)
|
||||
LIBDATADIR = $(PREFIX)/libdata
|
||||
LIBDATADIR = $(DESTDIR)$(PREFIX)/libdata
|
||||
endif
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue