1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 11:37:45 +00:00

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

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
}