GLUED: replaced PKG_COMMON with pkg_common.
This commit is contained in:
parent
bfb17158e6
commit
ae75cb017f
@ -300,7 +300,7 @@ fi
|
|||||||
|
|
||||||
export PKG="$pkg"
|
export PKG="$pkg"
|
||||||
export pkg_var="$pkg_var"
|
export pkg_var="$pkg_var"
|
||||||
export PKG_COMMON="$cfg_dir_packages/$PKG/common.bash"
|
export pkg_common="$cfg_dir_packages/$PKG/common.bash"
|
||||||
|
|
||||||
if ! [ -d "$cfg_dir_packages/$PKG" ]; then
|
if ! [ -d "$cfg_dir_packages/$PKG" ]; then
|
||||||
echo "ERROR: package '$PKG' does not exist."
|
echo "ERROR: package '$PKG' does not exist."
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
requires=\
|
requires=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
requires=\
|
requires=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
|
|
||||||
configure()
|
configure()
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
build()
|
build()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
requires=\
|
requires=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
requires=\
|
requires=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
requires=\
|
requires=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
requires=\
|
requires=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
requires=\
|
requires=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
requires=\
|
requires=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
requires=\
|
requires=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
requires=\
|
requires=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source "$PKG_COMMON"
|
source "$pkg_common"
|
||||||
|
|
||||||
configure()
|
configure()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source "$PKG_COMMON"
|
source "$pkg_common"
|
||||||
|
|
||||||
configure()
|
configure()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source "$PKG_COMMON"
|
source "$pkg_common"
|
||||||
|
|
||||||
version=\
|
version=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source "$PKG_COMMON"
|
source "$pkg_common"
|
||||||
|
|
||||||
version=\
|
version=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
configure()
|
configure()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
configure_common()
|
configure_common()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
configure()
|
configure()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
# We need to build it once on our host system in order to create the "protoc" file used by the second step.
|
# We need to build it once on our host system in order to create the "protoc" file used by the second step.
|
||||||
configure()
|
configure()
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
requires=\
|
requires=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
configure()
|
configure()
|
||||||
{
|
{
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Following indication from: http://randomsplat.com/id5-cross-compiling-python-for-embedded-linux.html
|
# Following indication from: http://randomsplat.com/id5-cross-compiling-python-for-embedded-linux.html
|
||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
requires=\
|
requires=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
configure()
|
configure()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
host_install()
|
host_install()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
host_install()
|
host_install()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source "$PKG_COMMON"
|
source "$pkg_common"
|
||||||
|
|
||||||
version=\
|
version=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source "$PKG_COMMON"
|
source "$pkg_common"
|
||||||
|
|
||||||
configure()
|
configure()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source "$PKG_COMMON"
|
source "$pkg_common"
|
||||||
|
|
||||||
configure()
|
configure()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source "$PKG_COMMON"
|
source "$pkg_common"
|
||||||
|
|
||||||
configure()
|
configure()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
requires=\
|
requires=\
|
||||||
(
|
(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source $PKG_COMMON
|
source $pkg_common
|
||||||
|
|
||||||
configure()
|
configure()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source "$PKG_COMMON"
|
source "$pkg_common"
|
||||||
|
|
||||||
configure()
|
configure()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
source "$PKG_COMMON"
|
source "$pkg_common"
|
||||||
|
|
||||||
configure()
|
configure()
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user