blob: e489945f3d18f35cef44cdab8b5bebc422c725ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
$FreeBSD$
--- lib/Makefile.in.orig Tue Mar 12 21:04:16 2002
+++ lib/Makefile.in Tue Apr 30 11:06:26 2002
@@ -220,7 +220,7 @@
# Need @LTLIBICONV@ because linebreak.c uses iconv().
libgettextlib_la_LDFLAGS = \
-release @VERSION@ \
- @LTLIBINTL@ @LTLIBICONV@ -lc -no-undefined
+ @LTLIBINTL@ @LTLIBICONV@ -no-undefined
@@ -238,14 +238,14 @@
gen-lbrkprop.c 3level.h Combining.txt
-DEFS = -DLIBDIR=\"$(libdir)\" @DEFS@
+DEFS = -DLIBDIR=\"$(prefix)/libdata\" @DEFS@
INCLUDES = -I. -I$(srcdir) -I.. -I../intl -I$(top_srcdir)/intl
DISTCLEANFILES = fnmatch.h
MOSTLYCLEANFILES = @STDBOOL_H@
-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
@@ -475,7 +475,7 @@
install-data-am: install-gettextsrcDATA
-install-exec-am: install-exec-local install-libLTLIBRARIES
+install-exec-am: install-libLTLIBRARIES
install-info: install-info-am
@@ -522,7 +522,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) ; \
|