BKrev: 40a5d331kCYQZnTvqnmSfG8zJCGwtg
do_configure () {
set -e
- cd ${B}
+ cd ${S}
gnu-configize
+ cd ${B}
oe_runconf --enable-shared --disable-static
mkdir -p ${WORKDIR}/db-${PV}/build_unix_static
cd ${WORKDIR}/db-${PV}/build_unix_static
- gnu-configize
oe_runconf --disable-shared --enable-static
cd ${S}
}
PACKAGES = ""
do_configure () {
- gnu-configize
+ (cd builds/unix && gnu-configize) || die "failure running gnu-configize"
oe_runconf
}
export AR_FOR_TARGET="${HOST_PREFIX}ar"
export RANLIB_FOR_TARGET="${HOST_PREFIX}ranlib"
fi
- gnu-configize
+ (cd ${S} && gnu-configize) || die "failure running gnu-configize"
oe_runconf
}
export AR_FOR_TARGET="${HOST_PREFIX}ar"
export RANLIB_FOR_TARGET="${HOST_PREFIX}ranlib"
fi
- gnu-configize
+ (cd ${S} && gnu-configize) || die "failure running gnu-configize"
oe_runconf
}
# calls for now
# don't pass CPPFLAGS into configure, since it upsets the kernel-headers
# version check and doesn't really help with anything
- gnu-configize
+ (cd ${S} && gnu-configize) || die "failure in running gnu-configize"
CPPFLAGS="" oe_runconf
}
# calls for now
# don't pass CPPFLAGS into configure, since it upsets the kernel-headers
# version check and doesn't really help with anything
+ (cd ${S} && gnu-configize) || die "failure in running gnu-configize"
CPPFLAGS="" oe_runconf
}