Bug 63452 - conf.d/README outdated
reflect correct path where is configured at the build time.
This commit is contained in:
parent
f6244d2cf2
commit
93137252cf
|
@ -21,8 +21,9 @@
|
||||||
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
# PERFORMANCE OF THIS SOFTWARE.
|
# PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
DOC_FILES= \
|
BUILT_SOURCES = README
|
||||||
README
|
DOC_SOURCES = README.in
|
||||||
|
DOC_FILES = $(DOC_SOURCES:.in=)
|
||||||
|
|
||||||
CONF_LINKS = \
|
CONF_LINKS = \
|
||||||
10-scale-bitmap-fonts.conf \
|
10-scale-bitmap-fonts.conf \
|
||||||
|
@ -41,7 +42,8 @@ CONF_LINKS = \
|
||||||
80-delicious.conf \
|
80-delicious.conf \
|
||||||
90-synthetic.conf
|
90-synthetic.conf
|
||||||
|
|
||||||
EXTRA_DIST = $(template_DATA) $(DOC_FILES)
|
EXTRA_DIST = $(template_DATA) $(DOC_SOURCES)
|
||||||
|
CLEANFILES = $(DOC_FILES)
|
||||||
|
|
||||||
configdir=$(CONFIGDIR)
|
configdir=$(CONFIGDIR)
|
||||||
config_DATA = $(DOC_FILES)
|
config_DATA = $(DOC_FILES)
|
||||||
|
@ -78,6 +80,9 @@ template_DATA = \
|
||||||
80-delicious.conf \
|
80-delicious.conf \
|
||||||
90-synthetic.conf
|
90-synthetic.conf
|
||||||
|
|
||||||
|
README: $(srcdir)/README.in
|
||||||
|
sed "s|\@TEMPLATEDIR\@|$(templatedir)|" $< > $@
|
||||||
|
|
||||||
install-data-hook:
|
install-data-hook:
|
||||||
mkdir -p $(DESTDIR)$(configdir)
|
mkdir -p $(DESTDIR)$(configdir)
|
||||||
@(echo cd $(DESTDIR)$(configdir); \
|
@(echo cd $(DESTDIR)$(configdir); \
|
||||||
|
|
|
@ -2,9 +2,9 @@ conf.d/README
|
||||||
|
|
||||||
Each file in this directory is a fontconfig configuration file. Fontconfig
|
Each file in this directory is a fontconfig configuration file. Fontconfig
|
||||||
scans this directory, loading all files of the form [0-9][0-9]*.conf.
|
scans this directory, loading all files of the form [0-9][0-9]*.conf.
|
||||||
These files are normally installed in ../conf.avail and then symlinked here,
|
These files are normally installed in @TEMPLATEDIR@
|
||||||
allowing them to be easily installed and then enabled/disabled by adjusting
|
and then symlinked here, allowing them to be easily installed and then
|
||||||
the symlinks.
|
enabled/disabled by adjusting the symlinks.
|
||||||
|
|
||||||
The files are loaded in numeric order, the structure of the configuration
|
The files are loaded in numeric order, the structure of the configuration
|
||||||
has led to the following conventions in usage:
|
has led to the following conventions in usage:
|
Loading…
Reference in New Issue