mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2024-12-22 15:02:59 +00:00
204df011a7
this is just a wrapper script. the real stuff happens in alpine.mk
10 lines
183 B
Bash
Executable File
10 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# first look for alpine.mk in current dir. Fallback to /usr/share/abuild
|
|
mk=./alpine.mk
|
|
if ! [ -f $mk ]; then
|
|
mk=/usr/share/abuild/alpine.mk
|
|
fi
|
|
|
|
make -f "$mk" APK_BIN= $@
|