blob: 86979a31cef8c0d43bf84accf96ce23bf5396c12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
XCOMM $Xorg: Imakefile,v 1.1 2002/11/23 05:42:52 gisburn Exp $
XPATTRIBUTEDIR = $(XPRINTDIR)/en_US/print/attributes
# Install the "en_US"-specific "document" attribute resources...
InstallNonExecFile(document,$(XPATTRIBUTEDIR))
# ... and reuse "job" and "printer" pools from the C locale
install::
( \
cd $(DESTDIR)$(XPATTRIBUTEDIR) ; \
for i in job printer \
; do \
$(RM) $$i ; \
$(LN) ../../../C/print/attributes/$$i $$i ; \
done \
)
|