From: Ian Kelling Date: Wed, 7 Sep 2016 08:52:48 +0000 (-0700) Subject: add script to update all X-Git-Url: https://iankelling.org/git/?p=buildscripts;a=commitdiff_plain;h=ddbe0926f54835ac1b48b050762043b22f01966d add script to update all --- diff --git a/emacs b/emacs index 5082b20..a575e61 100755 --- a/emacs +++ b/emacs @@ -35,7 +35,8 @@ done export CFLAGS="-Og -g3" -logq pi texlive hunspell git +# gawk and attr were no longer automatically installed in stretch +logq pi texlive hunspell git gawk attr case $(distro-name) in fedora ) # before i learned the builddep command, i identified these diff --git a/update-builds b/update-builds new file mode 100755 index 0000000..b2c71d4 --- /dev/null +++ b/update-builds @@ -0,0 +1,10 @@ +#!/bin/bash + + +cd "${BASH_SOURCE%/*}" # directory of the script +for x in *; do + if [[ $x == update-builds || ! -x $x || -d $x ]]; then + continue + fi + $x -u +done