blob: 29bf62d45408fb8d694822491d7a9e7fa8b98c0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
$NetBSD: patch-al,v 1.7 2003/04/17 06:22:23 martti Exp $
--- GNUmakefile.in.orig 2003-03-20 05:13:05.000000000 +0200
+++ GNUmakefile.in 2003-04-17 08:43:03.000000000 +0300
@@ -137,8 +137,7 @@
libiconv_peerdir = @LIBICONV_PEERDIR@
libpng_peerdir = @LIBPNG_PEERDIR@
-@BIGENDIAN_TRUE@dictionary = $(top_srcdir)/../abidistfiles/dictionary/BigEndian32.american.hash
-@BIGENDIAN_FALSE@dictionary = $(top_srcdir)/../abidistfiles/dictionary/LittleEndian32.american.hash
+dictionary = ${prefix}/lib/american.hash
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
mkinstalldirs = $(SHELL) $(top_srcdir)/ac-helpers/mkinstalldirs
@@ -497,7 +496,7 @@
for dir in `cd $(top_srcdir)/../abidistfiles; find . -type d ! -name CVS` ; do \
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$$dir ;\
if test "$$dir" = "./dictionary"; then \
- $(INSTALL_DATA) $(dictionary) $(DESTDIR)$(pkgdatadir)/$$dir/american.hash; \
+ $(LN_S) $(dictionary) $(DESTDIR)$(pkgdatadir)/$$dir/american.hash; \
else \
for file in $(top_srcdir)/../abidistfiles/$$dir/* ; do \
if test -f $$file ; then \
|