summaryrefslogtreecommitdiffstats
path: root/rules/ldd.make
blob: ac9bbc3fadb9fbffdc3f04b3eae4726f0d58a0a6 (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
# -*-makefile-*-
#
# Copyright (C) 2006 by Sascha Hauer
#           (C) 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
PACKAGES-$(PTXCONF_LDD) += ldd

# This is the version from the glibc we have stolen from
LDD_VERSION	:= 2.7
LDD_LICENSE	:= LGPL-2.1-or-later

# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------

$(STATEDIR)/ldd.targetinstall:
	@$(call targetinfo)

	@$(call install_init, ldd)
	@$(call install_fixup, ldd,PRIORITY,optional)
	@$(call install_fixup, ldd,SECTION,base)
	@$(call install_fixup, ldd,AUTHOR,"Robert Schwebel <r.schwebel\@pengutronix.de>")
	@$(call install_fixup, ldd,DESCRIPTION,missing)

	@$(call install_alternative, ldd, 0, 0, 0755, /usr/bin/ldd)

	@$(call install_finish, ldd)

	@$(call touch)

# vim: syntax=make