diff options
author | Chris Larson <clarson@kergoth.com> | 2004-01-22 04:43:04 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-01-22 04:43:04 +0000 |
commit | 2b19b9590f12dacdefffbf711548f1c2c86411fd (patch) | |
tree | 289a20a70182a66fbd9c8cc0a0185e121e580f92 /sgml-common/sgml-common-0.6.3 | |
parent | 8fc90592e77c63ce16c5263d79c927819e21c174 (diff) |
BUGFIX: sgml-common build needs to define docdir.
BKrev: 400f54d88tzEllHqpTzdJXPQUHbNjQ
Diffstat (limited to 'sgml-common/sgml-common-0.6.3')
-rw-r--r-- | sgml-common/sgml-common-0.6.3/autohell.patch | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/sgml-common/sgml-common-0.6.3/autohell.patch b/sgml-common/sgml-common-0.6.3/autohell.patch index e69de29bb2..6ebd5d93a3 100644 --- a/sgml-common/sgml-common-0.6.3/autohell.patch +++ b/sgml-common/sgml-common-0.6.3/autohell.patch @@ -0,0 +1,52 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +--- sgml-common-0.6.3/bin/Makefile.am~autohell 2001-01-30 09:42:21.000000000 -0500 ++++ sgml-common-0.6.3/bin/Makefile.am 2004-01-21 22:02:11.000000000 -0500 +@@ -1,6 +1,5 @@ + primitive_scripts = sgmlwhich + +-bindir = $(prefix)/bin + bin_SCRIPTS = install-catalog $(primitive_scripts) + + EXTRA_DIST = install-catalog.in $(primitive_scripts) +--- /dev/null 2003-09-23 18:19:32.000000000 -0400 ++++ sgml-common-0.6.3/bin/sgmlwhich.in 2004-01-21 22:02:11.000000000 -0500 +@@ -0,0 +1,7 @@ ++#!/bin/sh ++# Location of the main configuration file for consistency with non-LSB platforms ++# Send any comments to Eric Bischoff <eric@caldera.de> ++# This program is under GPL license. See LICENSE file for details. ++ ++echo "@sysconfdir@/sgml/sgml.conf" ++# Simple, isn't it? ;-) +--- /dev/null 2003-09-23 18:19:32.000000000 -0400 ++++ sgml-common-0.6.3/config/sgml.conf.in 2004-01-21 22:02:11.000000000 -0500 +@@ -0,0 +1,2 @@ ++SGML_BASE_DIR=@datadir@/sgml ++SGML_CATALOGS_DIR=@sysconfdir@/sgml +--- sgml-common-0.6.3/configure.in~autohell 2001-05-25 12:40:54.000000000 -0400 ++++ sgml-common-0.6.3/configure.in 2004-01-21 22:18:11.000000000 -0500 +@@ -3,10 +3,9 @@ + + AM_INIT_AUTOMAKE(sgml-common, 0.6.3) + +-docdir='$(prefix)/doc' +-AC_SUBST(docdir) +- + dnl Checks for programs. ++docdir='$(datadir)/doc' ++AC_SUBST(docdir) + + dnl Checks for libraries. + +@@ -18,6 +17,6 @@ + + AC_OUTPUT(Makefile \ + bin/Makefile bin/install-catalog \ +- config/Makefile \ ++ config/Makefile config/sgml.conf bin/sgmlwhich \ + doc/Makefile doc/HTML/Makefile doc/man/Makefile doc/refentry/Makefile \ + sgml-iso-entities/Makefile xml-iso-entities/Makefile) |