blob: 93fa33fbe7ba912ee2c6bd2bae670013cbc5d70b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-ab,v 1.6 2003/07/13 13:32:30 wiz Exp $
--- Makefile.in.orig Wed Apr 23 13:29:22 2003
+++ Makefile.in
@@ -37,7 +37,9 @@ all : lib/localcharset.h force
if test -d tests; then cd tests && $(MAKE) all; fi
lib/localcharset.h :
- builddir="`pwd`"; cd libcharset && $(MAKE) all && $(MAKE) install-lib libdir="$$builddir/lib" includedir="$$builddir/lib"
+ builddir="`pwd`"; cd libcharset && $(MAKE) all && \
+ cp -R lib/libcharset.la lib/.libs "$$builddir/lib" && \
+ cp -R include/*.h "$$builddir/include"
# Installs the library and include files only. Typically called with only
# $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here.
|