Ports/dtc: Specify NO_PYTHON when running make install

Previously, the install step was failing when the `python3` port was
installed.
This commit is contained in:
Tim Ledbetter 2023-08-22 06:38:38 +01:00 committed by Tim Schumacher
parent c8f78066c4
commit 0cb339bad1
Notes: sideshowbarker 2024-07-17 10:05:47 +09:00

View file

@ -12,5 +12,5 @@ build() {
}
install() {
run make PREFIX="${DESTDIR}" BINDIR="${DESTDIR}/usr/bin" install
run make NO_PYTHON=1 PREFIX="${DESTDIR}" BINDIR="${DESTDIR}/usr/bin" install
}