diff --git a/update_config.sh b/update_config.sh index 7a8c5fb905d1669b043ff3599fe30d0cf8dc3f4d..c31c7a3a1810f58b3a277bf7bcc2e5bd1974627a 100755 --- a/update_config.sh +++ b/update_config.sh @@ -1,19 +1,22 @@ #!/bin/bash -e +SRC=src/linux +CONFIG=config.x86_64 + config_equal() { - diff -q -s src/linux/.config config.x86_64 &>/dev/null + diff -q -s "$SRC/.config" "$CONFIG" &>/dev/null } if config_equal; then - (cd src/linux && make menuconfig) + (cd "$SRC" && make menuconfig) else - [[ -e src ]] && rm -rf src + [[ -e "$SRC" ]] && rm -rf "$SRC" makepkg --nobuild --force - (cd src/linux && make oldconfig) + (cd "$SRC" && make oldconfig) fi if ! config_equal; then - cp src/linux/.config config.x86_64 + cp -v "$SRC/.config" "$CONFIG" updpkgsums fi