diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-08-10 15:52:26 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-08-10 15:52:26 +0000 |
commit | 4b30f2c041d2983c5c8707b004589ea085ac2abb (patch) | |
tree | 360c3d6f9274a95ffebaa33eae7ae94f4b69d725 | |
parent | 2317c9b195dd58a5ef34a898f830aa3f90fb60a7 (diff) | |
download | upstream-4b30f2c041d2983c5c8707b004589ea085ac2abb.tar.gz upstream-4b30f2c041d2983c5c8707b004589ea085ac2abb.tar.bz2 upstream-4b30f2c041d2983c5c8707b004589ea085ac2abb.zip |
Fix cross-compile of embedded berkeley db
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1596 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/osiris/patches/configure-cross.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/osiris/patches/configure-cross.patch b/package/osiris/patches/configure-cross.patch index 9ef79d0fdf..025a3f8419 100644 --- a/package/osiris/patches/configure-cross.patch +++ b/package/osiris/patches/configure-cross.patch @@ -5,7 +5,7 @@ -DB_CONFIG_ARGS="--enable-shared=no --enable-static=yes" -+DB_CONFIG_ARGS="--target=${target} --host=${host} --build=${build} --enable-shared=no --enable-static=yes" ++DB_CONFIG_ARGS="--target=${target_alias} --host=${host_alias} --build=${build_alias} --enable-shared=no --enable-static=yes" case "${OS_NAME}" in MINGW32*) @@ -16,7 +16,7 @@ dnl configure local copy of Berkely DB: -DB_CONFIG_ARGS="--enable-shared=no --enable-static=yes" -+DB_CONFIG_ARGS="--target=${target} --host=${host} --build=${build} --enable-shared=no --enable-static=yes" ++DB_CONFIG_ARGS="--target=${target_alias} --host=${host_alias} --build=${build_alias} --enable-shared=no --enable-static=yes" case "${OS_NAME}" in MINGW32*) |