summaryrefslogtreecommitdiff
blob: 26360535c141fce25d1e1124b6d22e009c48a32b (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
From 75913fec2f0b168d08c28eaa84fd69f52767802d Mon Sep 17 00:00:00 2001
From: Bernd Waibel <waebbl-gentoo@posteo.net>
Date: Sat, 3 Apr 2021 10:54:08 +0200
Subject: [PATCH] fix unrecognized option --with-GTK

Closes: https://bugs.gentoo.org/470652

Signed-off-by: Bernd Waibel <waebbl-gentoo@posteo.net>
---
 Makefile | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/Makefile b/Makefile
index 08224f9..b210d8a 100644
--- a/Makefile
+++ b/Makefile
@@ -128,84 +128,84 @@ lib/bitmap.a: bitmap/makefile
 	cd bitmap && $(MAKE)
 
 bitmap/makefile: bitmap/makefile.in Makefile
-	cd bitmap && ./configure $(CONFIGURE_OPTIONS)
+	cd bitmap && ./configure
 
 ####
 lib/docBuf.a: docBuf/makefile
 	cd docBuf && $(MAKE)
 
 docBuf/makefile: docBuf/makefile.in Makefile
-	cd docBuf && ./configure $(CONFIGURE_OPTIONS)
+	cd docBuf && ./configure
 
 ####
 lib/docBase.a: docBase/makefile
 	cd docBase && $(MAKE)
 
 docBase/makefile: docBase/makefile.in Makefile
-	cd docBase && ./configure $(CONFIGURE_OPTIONS)
+	cd docBase && ./configure
 
 ####
 lib/docHtml.a: docHtml/makefile
 	cd docHtml && $(MAKE)
 
 docHtml/makefile: docHtml/makefile.in Makefile
-	cd docHtml && ./configure $(CONFIGURE_OPTIONS)
+	cd docHtml && ./configure
 
 ####
 lib/docLayout.a: docLayout/makefile
 	cd docLayout && $(MAKE)
 
 docLayout/makefile: docLayout/makefile.in Makefile
-	cd docLayout && ./configure $(CONFIGURE_OPTIONS)
+	cd docLayout && ./configure
 
 ####
 lib/docRtf.a: docRtf/makefile
 	cd docRtf && $(MAKE)
 
 docRtf/makefile: docRtf/makefile.in Makefile
-	cd docRtf && ./configure $(CONFIGURE_OPTIONS)
+	cd docRtf && ./configure
 
 ####
 lib/docEdit.a: docEdit/makefile
 	cd docEdit && $(MAKE)
 
 docEdit/makefile: docEdit/makefile.in Makefile
-	cd docEdit && ./configure $(CONFIGURE_OPTIONS)
+	cd docEdit && ./configure
 
 ####
 lib/ind.a: ind/makefile
 	cd ind && $(MAKE)
 
 ind/makefile: ind/makefile.in Makefile
-	cd ind && ./configure $(CONFIGURE_OPTIONS)
+	cd ind && ./configure
 
 ####
 lib/appUtil.a: appUtil/makefile
 	cd appUtil && $(MAKE)
 
 appUtil/makefile: appUtil/makefile.in Makefile
-	cd appUtil && ./configure $(CONFIGURE_OPTIONS)
+	cd appUtil && ./configure
 
 ####
 lib/textEncoding.a: textEncoding/makefile
 	cd textEncoding && $(MAKE)
 
 textEncoding/makefile: textEncoding/makefile.in Makefile
-	cd textEncoding && ./configure $(CONFIGURE_OPTIONS)
+	cd textEncoding && ./configure
 
 ####
 lib/utilPs.a: utilPs/makefile
 	cd utilPs && $(MAKE)
 
 utilPs/makefile: utilPs/makefile.in Makefile
-	cd utilPs && ./configure $(CONFIGURE_OPTIONS)
+	cd utilPs && ./configure
 
 ####
 lib/docFont.a: docFont/makefile
 	cd docFont && $(MAKE)
 
 docFont/makefile: docFont/makefile.in Makefile
-	cd docFont && ./configure $(CONFIGURE_OPTIONS)
+	cd docFont && ./configure
 
 ####
 lib/appFrame.a: appFrame/makefile
@@ -219,7 +219,7 @@ lib/drawMeta.a: drawMeta/makefile
 	cd drawMeta && $(MAKE)
 
 drawMeta/makefile: drawMeta/makefile.in Makefile
-	cd drawMeta && ./configure $(CONFIGURE_OPTIONS)
+	cd drawMeta && ./configure
 
 ####
 ####	Compile and link Ted
@@ -252,7 +252,7 @@ package.shared: compile.shared tedPackage/makefile
 	: To install Ted, you can now run 'make install' AS ROOT
 
 tedPackage/makefile: tedPackage/makefile.in Makefile
-	cd tedPackage && ./configure $(CONFIGURE_OPTIONS)
+	cd tedPackage && ./configure
 
 sysvpkg: compile tedPackage/makefile
 	cd tedPackage && $(MAKE) $@
-- 
2.31.1