mirror of https://git.FreeBSD.org/ports.git
24 lines
939 B
Plaintext
24 lines
939 B
Plaintext
--- Makefile.orig 2024-12-18 03:38:13 UTC
|
|
+++ Makefile
|
|
@@ -240,7 +240,7 @@ docdir = $(datadir)/doc/$(PKGNAME)
|
|
plugindir = $(pkglibexecdir)/plugins
|
|
datadir = $(PREFIX)/share
|
|
docdir = $(datadir)/doc/$(PKGNAME)
|
|
-mandir = $(datadir)/man
|
|
+mandir = $(PREFIX)/man
|
|
man1dir = $(mandir)/man1
|
|
man5dir = $(mandir)/man5
|
|
man7dir = $(mandir)/man7
|
|
@@ -281,9 +281,9 @@ ifeq ($(STATIC),1)
|
|
# For MacOS, Jacob Rapoport <jacob@rumblemonkey.com> changed this to:
|
|
# -L/usr/local/lib -lsqlite3 -lz -Wl,-lm -lpthread -ldl $(COVFLAGS)
|
|
# But that doesn't static link.
|
|
-LDLIBS = -L$(CPATH) -Wl,-dn $(SQLITE3_LDLIBS) -Wl,-dy -lm -lpthread -ldl $(COVFLAGS)
|
|
+LDLIBS = -L$(LIBRARY_PATH) -Wl,-dn $(SQLITE3_LDLIBS) -Wl,-dy -lm -lpthread -ldl $(COVFLAGS)
|
|
else
|
|
-LDLIBS = -L$(CPATH) -lm $(SQLITE3_LDLIBS) $(COVFLAGS)
|
|
+LDLIBS = -L$(LIBRARY_PATH) -lm $(SQLITE3_LDLIBS) $(COVFLAGS)
|
|
endif
|
|
|
|
# If we have the postgres client library we need to link against it as well
|