1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/devel/gettext-devel/files/patch-lib::Makefile.in
2001-07-05 06:36:01 +00:00

39 lines
1.4 KiB
Plaintext

$FreeBSD$
--- lib/Makefile.in 2001/05/29 08:54:24 1.1
+++ lib/Makefile.in 2001/05/29 08:59:30
@@ -116,11 +116,11 @@
noinst_HEADERS = c-ctype.h error.h fstrcmp.h getline.h getopt.h hash.h lbrkprop.h linebreak.h mbswidth.h obstack.h printf-parse.h printf.h system.h pathmax.h
-DEFS = -DLIBDIR=\"$(libdir)\" @DEFS@
+DEFS = -DLIBDIR=\"$(prefix)/libdata\" @DEFS@
INCLUDES = -I. -I$(srcdir) -I.. -I../intl
-charset_alias = $(DESTDIR)$(libdir)/charset.alias
-charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
+charset_alias = $(DESTDIR)$(prefix)/libdata/charset.alias
+charset_tmp = $(DESTDIR)$(prefix)/libdata/charset.tmp
SUFFIXES = .sed .sin
@@ -349,7 +349,7 @@
mostlyclean distclean maintainer-clean
-# The following is needed in order to install a simple file in $(libdir)
+# The following is needed in order to install a simple file in $(prefix)/libdata
# which is shared with other installed packages. We use a list of referencing
# packages so that "make uninstall" will remove the file if and only if it
# is not used by another installed package.
@@ -358,7 +358,7 @@
all-local: charset.alias ref-add.sed ref-del.sed
install-exec-local: all-local
- $(mkinstalldirs) $(DESTDIR)$(libdir)
+ $(mkinstalldirs) $(DESTDIR)$(prefix)/libdata
if test -f $(charset_alias); then \
sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
$(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \