blob: a50a56d14033bbfa1b5ca9b19cd813943caf7005 (
plain)
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
|
$NetBSD: patch-ac,v 1.5 2000/05/08 17:23:48 drochner Exp $
--- lib/Makefile.in.orig Sun Jan 23 08:03:45 2000
+++ lib/Makefile.in Sat Apr 29 10:23:49 2000
@@ -15,7 +15,7 @@
#
# Modified by H.Kakugawa to use libtool
-LIBTOOL = ../libtool
+LIBTOOL = @LIBTOOL@
SHELL = /bin/sh
CC = @CC@
CPP = @CPP@
@@ -160,17 +160,17 @@
install: dummy
$(MKINSTALLDIRS) $(libdir)
$(MKINSTALLDIRS) $(includedir)
- $(MKINSTALLDIRS) @T1LIB_DATA_DIR@
+# $(MKINSTALLDIRS) @T1LIB_DATA_DIR@
$(LIBTOOL) --mode=install \
$(INSTALL_DATA) $(MAIN_TARGET) $(libdir)
$(LIBTOOL) --mode=install \
$(INSTALL_DATA) $(MAIN_HEADER) $(includedir)
- if (test -f @T1LIB_DATA_DIR@/t1lib.config) \
- then \
- echo "Alert: Global configuration file exists, installation skipped!"; \
- else \
- $(LIBTOOL) --mode=install $(INSTALL_DATA) t1lib.config @T1LIB_DATA_DIR@; \
- fi;
+# if (test -f @T1LIB_DATA_DIR@/t1lib.config) \
+# then \
+# echo "Alert: Global configuration file exists, installation skipped!"; \
+# else \
+# $(LIBTOOL) --mode=install $(INSTALL_DATA) t1lib.config @T1LIB_DATA_DIR@; \
+# fi;
uninstall: dummy
|