about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2023-02-10 22:56:18 -0600
committerCase Duckworth2023-02-10 22:56:18 -0600
commitd50715d794846d0ff9389f7a513ec976e3ee2318 (patch)
tree7ed0a693f8b50900558a287837a26aec1b287114
parentAdd example installation to Makefile (diff)
downloadmisc-d50715d794846d0ff9389f7a513ec976e3ee2318.tar.gz
misc-d50715d794846d0ff9389f7a513ec976e3ee2318.zip
Whitespace
-rwxr-xr-xmisc14
1 files changed, 7 insertions, 7 deletions
diff --git a/misc b/misc index f9aae4c..0974561 100755 --- a/misc +++ b/misc
@@ -232,9 +232,9 @@ repo_nuke() { # repo_nuke
232make() { 232make() {
233 MISC_DONE=1 233 MISC_DONE=1
234 cmd make \ 234 cmd make \
235 -C "$MISC_REPO" \ 235 -C "$MISC_REPO" \
236 PREFIX="$MISC_INSTALL_PREFIX" \ 236 PREFIX="$MISC_INSTALL_PREFIX" \
237 "$@" 237 "$@"
238} 238}
239_make() { cmd make "$@"; } 239_make() { cmd make "$@"; }
240 240
@@ -258,15 +258,15 @@ configure() {
258 258
259git() { 259git() {
260 cmd git \ 260 cmd git \
261 -C "$MISC_REPO" \ 261 -C "$MISC_REPO" \
262 "$@" 262 "$@"
263} 263}
264_git() { cmd git "$@"; } 264_git() { cmd git "$@"; }
265 265
266tar() { 266tar() {
267 cmd tar \ 267 cmd tar \
268 -C "$MISC_REPO" \ 268 -C "$MISC_REPO" \
269 "$@" 269 "$@"
270} 270}
271_tar() { cmd tar "$@"; } 271_tar() { cmd tar "$@"; }
272 272