From ddbe0926f54835ac1b48b050762043b22f01966d Mon Sep 17 00:00:00 2001 From: Ian Kelling Date: Wed, 7 Sep 2016 01:52:48 -0700 Subject: [PATCH] add script to update all --- emacs | 3 ++- update-builds | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100755 update-builds 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 -- 2.30.2