mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-11-01 00:51:08 +03:00
27 lines
643 B
Bash
27 lines
643 B
Bash
|
#/bin/sh
|
||
|
|
||
|
EXTRA="extras/chassis_id extras/scsi_id extras/volume_id"
|
||
|
|
||
|
make spotless EXTRAS="$EXTRA" >/dev/null
|
||
|
make all EXTRAS="$EXTRA" || exit
|
||
|
echo -e "\n\n"
|
||
|
|
||
|
make spotless EXTRAS="$EXTRA" >/dev/null
|
||
|
make all DEBUG=true EXTRAS="$EXTRA" || exit
|
||
|
echo -e "\n\n"
|
||
|
|
||
|
make spotless EXTRAS="$EXTRA" >/dev/null
|
||
|
make all USE_LOG=false EXTRAS="$EXTRA" || exit
|
||
|
echo -e "\n\n"
|
||
|
|
||
|
make spotless EXTRAS="$EXTRA" >/dev/null
|
||
|
make all USE_KLIBC=true DEBUG=true EXTRAS="$EXTRA" || exit
|
||
|
echo -e "\n\n"
|
||
|
|
||
|
make spotless EXTRAS="$EXTRA" >/dev/null
|
||
|
make all USE_KLIBC=true USE_LOG=false EXTRAS="$EXTRA" || exit
|
||
|
echo -e "\n\n"
|
||
|
|
||
|
make spotless EXTRAS="$EXTRA" >/dev/null
|
||
|
|