
Updated extra/sdl2 to 2.26.5 Updated net/poppler-data to 0.4.12 Discarded docdir build option in extra/xarchiver Fixed prefix build option in gtk/openjpeg
14 lines
403 B
Bash
14 lines
403 B
Bash
config() {
|
|
NEW="$1"
|
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
|
# If there's no config file by that name, mv it over:
|
|
if [ ! -r $OLD ]; then
|
|
mv $NEW $OLD
|
|
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy
|
|
rm $NEW
|
|
fi
|
|
# Otherwise, we leave the .new copy for the admin to consider...
|
|
}
|
|
|
|
config share/alsa/alsa.conf.new
|
|
config etc/asound.conf.new
|