summaryrefslogtreecommitdiffstats
path: root/rules/ldd.make
blob: 01b98bad38161bd7e961f2ea9f62028b34fcaf85 (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
39
40
# -*-makefile-*-
#
# Copyright (C) 2006 by Sascha Hauer
#           (C) 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
#
# See CREDITS for details about who has contributed to this project.
#
# 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