diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-11-13 11:23:44 +0000 |
---|---|---|
committer | Mattia Rizzolo <mattia@mapreri.org> | 2015-11-15 10:16:22 +0000 |
commit | 580b246ae589e4b6011f6149e4680b1fa08497f4 (patch) | |
tree | b45a0d5b85ce82c9e0cc0574a5677efe5acd0994 /pbuilder-buildpackage-funcs | |
parent | 7222b9fadd6be6aa3c50b1aceab2acf9a8ff40b5 (diff) | |
download | pbuilder-580b246ae589e4b6011f6149e4680b1fa08497f4.tar pbuilder-580b246ae589e4b6011f6149e4680b1fa08497f4.tar.gz |
use log.i() instead of log()
Diffstat (limited to 'pbuilder-buildpackage-funcs')
-rw-r--r-- | pbuilder-buildpackage-funcs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pbuilder-buildpackage-funcs b/pbuilder-buildpackage-funcs index e0aabfa..c3eeee7 100644 --- a/pbuilder-buildpackage-funcs +++ b/pbuilder-buildpackage-funcs @@ -37,7 +37,7 @@ function copydsc () { local DSCFILE=$(getdscfiles "$1") local TARGET="$2" for FILE in ${DSCFILE[@]} ; do - log "I: copying [$FILE]" + log.i "copying [$FILE]" cp -p "$FILE" "$TARGET" done } @@ -68,8 +68,8 @@ function checkbuilddep () { function showbuildbanner () { # show some banners for building - log "I: pbuilder-buildpackage/"$(dpkg --print-architecture) - log "I: $1" + log.i "pbuilder-buildpackage/"$(dpkg --print-architecture) + log.i "$1" } function cowprotect () { @@ -114,7 +114,7 @@ function createbuilduser () { function setup_ccache() { if [ -n "$CCACHEDIR" ]; then - log "I: Setting up ccache" + log.i "Setting up ccache" if ! [ -d "$BUILDPLACE/$CCACHEDIR" ]; then mkdir -p "$BUILDPLACE/$CCACHEDIR" fi |