tech-pkg archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: Python versions
Robert Swindells <rjs%fdy2.co.uk@localhost> writes:
> I am trying to build wip/freecad with Python 3.11, it requires
What do you mean with? wip/freecad does not specify anything about
python versions.
> the devel/py-boost package, the packages required by py-boost are
> getting built against the default Python 3.12.
In general, if you have stale working directories, old state can
persist. I recommend 'rm -rf */*/work' frequently.
I have a shell function which cleans more carefully including WRKOBJDIR.
cleanwork ()
{
cd ${PKGSRC} && [ -f mk/compiler/ccache.mk ] && ls -d */*/work 2> /dev/null | while read wd; do
d=`echo $wd | sed -e's,/work,,'`;
echo "CLEANING $d because of $wd";
( cd $d && make clean );
done
}
Home |
Main Index |
Thread Index |
Old Index