summaryrefslogtreecommitdiffstats
path: root/scripts/lib/ptxd_make_world_tags.sh
blob: 8195e570b8932aba3d75cbe9ed314fd2b739ed13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
#
# Copyright (C) 2009 by Marc Kleine-Budde <mkl@pengutronix.de>
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# call the tagsr
#
ptxd_make_world_tags() {
    ptxd_make_world_init &&

    ptxd_eval \
	"${pkg_path}" \
	"${pkg_env}" \
	"${pkg_make_env}" \
	"${MAKE}" -C "${pkg_build_dir}" \
	"${pkg_make_opt}" \
	"${pkg_make_par}" \
	"${pkg_tags_opt}"
}
export -f ptxd_make_world_tags