search for: xargs_bootstrap_run

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

Did you mean: xargs0_bootstrap_run
2010 Oct 23
1
[PATCH] Make appliance-building work on systems with default library search paths differing from the appliance's
..._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 @FEBOOTSTRAP_RUN@ "$@" + } + + bootstrap_minimize() + { + LD_LIBRARY_PATH=$BOOT_LD_LIBRARY_PATH @FEBOOTSTRAP_MINIMIZE@ "$@" + } + cd @top_builddir@ # Decide on names for the final output. These have to match M...