summaryrefslogtreecommitdiffstats
path: root/scripts/lib/ptxd_make_opkg_finish.sh
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2015-07-02 09:54:06 +0200
committerMarc Kleine-Budde <mkl@pengutronix.de>2015-07-02 11:41:51 +0200
commit7d05e624b36630bafeb2df8a7080e07ee96ca14a (patch)
treeae4f7a5d8caee878ac392a265eb63a5f2fc93a09 /scripts/lib/ptxd_make_opkg_finish.sh
parentff1f97b44fd0a9846bfeb0aa65fd66fb1ba2f856 (diff)
downloadptxdist-7d05e624b36630bafeb2df8a7080e07ee96ca14a.tar.gz
ptxdist-7d05e624b36630bafeb2df8a7080e07ee96ca14a.tar.xz
image: ipkg, opkg: use symbol IMAGE_XPKG_EXTRA_ARGS to pass extra arguments to ipkg and opkg buildptxdist-2015.07.0
Originally the symbols IMAGE_IPKG_EXTRA_ARGS, IMAGE_OPKG_EXTRA_ARGS were used in the code, but there only was the config entry for the ipkg symbol in Kconfig. This patch converts the IMAGE_IPKG_EXTRA_ARGS to IMAGE_XPKG_EXTRA_ARGS and uses it during ipkg and opkg build. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'scripts/lib/ptxd_make_opkg_finish.sh')
-rw-r--r--scripts/lib/ptxd_make_opkg_finish.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/ptxd_make_opkg_finish.sh b/scripts/lib/ptxd_make_opkg_finish.sh
index 2485c247a..2505f2bcf 100644
--- a/scripts/lib/ptxd_make_opkg_finish.sh
+++ b/scripts/lib/ptxd_make_opkg_finish.sh
@@ -16,7 +16,7 @@
ptxd_make_opkg_finish_impl() {
chown -R 0:0 "${pkg_xpkg_tmp}" &&
ptxd_make_xpkg_pkg "${pkg_opkg_tmp}" "${pkg_xpkg_cmds}" "${pkg_xpkg_perms}" &&
- opkg-build ${ptx_opkg_extra_args} "${pkg_opkg_tmp}" "${ptx_pkg_dir}"
+ opkg-build ${ptx_xpkg_extra_args} "${pkg_opkg_tmp}" "${ptx_pkg_dir}"
}
export -f ptxd_make_opkg_finish_impl