|
From: Florent R. <f.r...@fr...> - 2025-08-19 06:45:40
|
Le 19/08/2025, bo23--- via Flightgear-devel <fli...@li...> a écrit:
> Don't feel too sorry, I also missed it. In fact, I didn't include any
> component in my line, thus defaulting to ALL.
So, unless I'm mistaken, you implicitly used this:
CARES DATA FGFS OSG SIMGEAR PLIB
because of:
# Components to process when none has been specified (in 'normal' mode)
declare -a WHATTOBUILDALL=(CARES DATA FGFS OSG SIMGEAR)
if [[ $SELECTED_SUITE != "next" ]]; then
WHATTOBUILDALL+=(PLIB)
fi
declare -a WHATTOBUILD
if [[ $# -eq 0 && "$CLEANUP" = "n" ]] || _elementIn ALL "$@"; then
WHATTOBUILD=( "${WHATTOBUILDALL[@]}" )
else
WHATTOBUILD=( "$@" )
fi
My previous message still had a confusion (sorry!): the successful build
I first reported about didn't use the OSG repo in my dnc-managed dir at
all, it used the 'libopenscenegraph-dev' distro package (version
3.6.5+dfsg1-9). This is because:
- the use of --cleanup guaranteed that previously built OSG files in
the dnc-managed dir (in particular in $INSTALL_DIR_OSG) were removed
at the beginning of the d&c run;
- OSG isn't an “intercomponent dep” (cf. function
_maybe_add_intercomponent_deps()), so as I didn't specify OSG, it
wasn't compiled.
Regards
--
Florent
|