search for: bootstrap_run

Displaying 1 result from an estimated 1 matches for "bootstrap_run".

Did you mean: febootstrap_run
2010 Oct 23
1
[PATCH] Make appliance-building work on systems with default library search paths differing from the appliance's
...33 @@ set -e set -x if [ "@DIST@" = "REDHAT" ]; then + + if [[ $(uname -m) =~ .*64 ]]; then + BOOT_LD_LIBRARY_PATH="$(pwd)/../initramfs/lib64:$LD_LIBRARY_PATH" + else + BOOT_LD_LIBRARY_PATH="$(pwd)/../initramfs/lib:$LD_LIBRARY_PATH" + fi + + bootstrap_run() + { + LD_LIBRARY_PATH=$BOOT_LD_LIBRARY_PATH @FEBOOTSTRAP_RUN@ "$@" + } + + xargs0_bootstrap_run() + { + LD_LIBRARY_PATH=$BOOT_LD_LIBRARY_PATH xargs -0 @FEBOOTSTRAP_RUN@ "$@" + } + + xargs_bootstrap_run() + { + LD_LIBRARY_PATH=$BOOT_LD_LIBRARY_PATH xargs @FEBOOT...