blob: 257ba5252d1b577349726bca89dcf4ae2796ef40 (
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
|
## Process this file with automake to produce Makefile.in
dist_pkgdata_DATA = \
architecture.mk \
buildapi.mk \
buildflags.mk \
buildopts.mk \
buildtools.mk \
default.mk \
pkg-info.mk \
vendor.mk \
# EOL
SUFFIXES =
include $(top_srcdir)/build-aux/subst.am
# Ideally we'd use '$(SED) -i', but unfortunately that's not portable.
install-data-hook:
$(do_make_subst) <$(DESTDIR)$(pkgdatadir)/default.mk \
>$(DESTDIR)$(pkgdatadir)/default.mk.new
mv $(DESTDIR)$(pkgdatadir)/default.mk.new \
$(DESTDIR)$(pkgdatadir)/default.mk
$(do_make_subst) <$(DESTDIR)$(pkgdatadir)/buildtools.mk \
>$(DESTDIR)$(pkgdatadir)/buildtools.mk.new
mv $(DESTDIR)$(pkgdatadir)/buildtools.mk.new \
$(DESTDIR)$(pkgdatadir)/buildtools.mk
$(do_make_subst) <$(DESTDIR)$(pkgdatadir)/vendor.mk \
>$(DESTDIR)$(pkgdatadir)/vendor.mk.new
mv $(DESTDIR)$(pkgdatadir)/vendor.mk.new \
$(DESTDIR)$(pkgdatadir)/vendor.mk
|