summaryrefslogtreecommitdiffstats
path: root/scripts/lib/ptxd_make_world_prepare.sh
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2009-11-09 11:51:56 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2009-11-09 11:52:39 +0100
commit4199f7c7423911affffec18b527f9bbb23edc888 (patch)
tree41a4cead68b7922c720280394a356016c07f8b59 /scripts/lib/ptxd_make_world_prepare.sh
parent8262362837a507be210c0f45ee5092dbd0697f50 (diff)
downloadptxdist-4199f7c7423911affffec18b527f9bbb23edc888.tar.gz
ptxdist-4199f7c7423911affffec18b527f9bbb23edc888.tar.xz
[ptxd_make_world_prepare.sh] disable cache file for now
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'scripts/lib/ptxd_make_world_prepare.sh')
-rw-r--r--scripts/lib/ptxd_make_world_prepare.sh34
1 files changed, 17 insertions, 17 deletions
diff --git a/scripts/lib/ptxd_make_world_prepare.sh b/scripts/lib/ptxd_make_world_prepare.sh
index 661b929c8..9ed01314d 100644
--- a/scripts/lib/ptxd_make_world_prepare.sh
+++ b/scripts/lib/ptxd_make_world_prepare.sh
@@ -55,29 +55,29 @@ export -f ptxd_make_world_prepare_cmake
# prepare for autoconf based pkgs
#
ptxd_make_world_prepare_conf() {
- local pkg_cache_file cache_src
-
- case "${pkg_type}" in
- host|cross) cache_src="${PTXDIST_AUTOCONF_CACHE_HOST}" ;;
- target) cache_src="${PTXDIST_AUTOCONF_CACHE_TARGET}" ;;
- esac &&
-
- if [ -n "${PTXCONF_SETUP_COMMON_CACHE}" ]; then
- # use common cache
- pkg_cache_file="${cache_src}"
- else
- # use individual cache
- pkg_cache_file="${pkg_build_dir}/config.cache"
- cp -- "${cache_src}" "${pkg_cache_file}"
- fi &&
+# local pkg_cache_file cache_src
+#
+# case "${pkg_type}" in
+# host|cross) cache_src="${PTXDIST_AUTOCONF_CACHE_HOST}" ;;
+# target) cache_src="${PTXDIST_AUTOCONF_CACHE_TARGET}" ;;
+# esac &&
+#
+# if [ -n "${PTXCONF_SETUP_COMMON_CACHE}" ]; then
+# # use common cache
+# pkg_cache_file="${cache_src}"
+# else
+# # use individual cache
+# pkg_cache_file="${pkg_build_dir}/config.cache"
+# cp -- "${cache_src}" "${pkg_cache_file}"
+# fi &&
eval \
"${pkg_path}" \
"${pkg_env}" \
"${pkg_conf_env}" \
"${pkg_conf_dir}/configure" \
- "${pkg_conf_opt}" \
- --cache-file="${pkg_cache_file}"
+ "${pkg_conf_opt}"
+# --cache-file="${pkg_cache_file}"
}
export -f ptxd_make_world_prepare_conf