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
|
ifndef USE_GENERIC_LIBDATADIR
|
||||||
ifeq ($(UNAME_S), FreeBSD)
|
ifeq ($(UNAME_S), FreeBSD)
|
||||||
LIBDATADIR = $(PREFIX)/libdata
|
LIBDATADIR = $(DESTDIR)$(PREFIX)/libdata
|
||||||
endif
|
endif
|
||||||
ifeq ($(UNAME_S), DragonFly)
|
ifeq ($(UNAME_S), DragonFly)
|
||||||
LIBDATADIR = $(PREFIX)/libdata
|
LIBDATADIR = $(DESTDIR)$(PREFIX)/libdata
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue