Don't use += in sh

This commit is contained in:
sin 2014-02-14 12:04:53 +00:00
parent 5ffd49a86d
commit e34a8a0934

View File

@ -12,7 +12,7 @@ unpack() {
build() {
cd src/mksh
CC=x86_64-linux-musl-gcc LDFLAGS+=-static sh Build.sh || return 1
CC=x86_64-linux-musl-gcc LDFLAGS=-static sh Build.sh || return 1
cd -
}