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

Ports: Consistently indent with four spaces

This commit is contained in:
Linus Groh 2021-04-20 18:29:35 +02:00
parent 899698c317
commit 09f8d52b00
5 changed files with 22 additions and 22 deletions

View file

@ -7,24 +7,24 @@ http://gondor.apana.org.au/~herbert/dash/files/dash-${version}.tar.gz.sha256sum
auth_type="sha256"
configure() {
host_env
run autoupdate
run autoconf
run aclocal
run automake --add-missing
run mkdir -p host-build
run sh -c "cd host-build && ../configure $configopts CFLAGS=-I."
target_env
run mkdir -p target-build
run sh -c "cd target-build && ../configure --host="${SERENITY_ARCH}-pc-serenity" --disable-helpers $configopts CFLAGS=-I."
host_env
run autoupdate
run autoconf
run aclocal
run automake --add-missing
run mkdir -p host-build
run sh -c "cd host-build && ../configure $configopts CFLAGS=-I."
target_env
run mkdir -p target-build
run sh -c "cd target-build && ../configure --host="${SERENITY_ARCH}-pc-serenity" --disable-helpers $configopts CFLAGS=-I."
}
build() {
host_env
run sh -c "cd host-build && make $makeopts"
run cp host-build/src/{mkinit,mksyntax,mknodes,mksignames} src
target_env
run sh -c "cd target-build && make $makeopts"
host_env
run sh -c "cd host-build && make $makeopts"
run cp host-build/src/{mkinit,mksyntax,mknodes,mksignames} src
target_env
run sh -c "cd target-build && make $makeopts"
}
install() {