mirror of
https://github.com/outbackdingo/builder.git
synced 2026-01-27 10:18:28 +00:00
18 lines
317 B
Bash
Executable File
18 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# OpenIPC | version 2025.02.09
|
|
# A simple script for quick and complete recompilation of a package
|
|
|
|
|
|
LANG=C
|
|
PACKAGE=$1
|
|
PACKAGE="${PACKAGE:=busybox}"
|
|
|
|
rm -rfv \
|
|
openipc/output/per-package/${PACKAGE} \
|
|
openipc/output/build/${PACKAGE}*
|
|
|
|
make -C openipc/output ${PACKAGE}-{dirclean,rebuild}
|
|
|
|
exit 0
|