aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-08-29 20:45:01 +0000
committerMattia Rizzolo <mattia@mapreri.org>2015-08-29 20:45:01 +0000
commitc732621264061b77a7bcce1cc7d79f64d2865534 (patch)
treeba88a7ba4974c41596c25b4119e16543e049712e
parent062a28a59ed97c3921234e8eab995218367840bb (diff)
downloadpbuilder-c732621264061b77a7bcce1cc7d79f64d2865534.tar
pbuilder-c732621264061b77a7bcce1cc7d79f64d2865534.tar.gz
pbuilder-modules: fix spelling error: s,compatibily,compatibility,g
Gbp-Dch: Ignore Thanks: Sven Joachim <svenjoac@gmx.de> for the reporting
-rw-r--r--pbuilder-modules6
1 files changed, 3 insertions, 3 deletions
diff --git a/pbuilder-modules b/pbuilder-modules
index 6e90e9a..9caee07 100644
--- a/pbuilder-modules
+++ b/pbuilder-modules
@@ -498,7 +498,7 @@ function extractbuildplace () {
# since it's created at chroot creation time too.
mkdir -p "${BUILDPLACE}${BUILDDIR}"
# XXX added in 0.216, to be deprecated in the future
- # Add a compatibily symlink from the old BUILDDIR (/tmp/buildd) to the new
+ # Add a compatibility symlink from the old BUILDDIR (/tmp/buildd) to the new
# one, if different. (Yes, people should just fix their scripts to use
# BUILDDIR, please file a bug if you need that variable to also be available
# elsewhere other than hook script; given that, I won't do too fancy checks)
@@ -509,12 +509,12 @@ function extractbuildplace () {
rmdir "$BUILDPLACE/tmp/buildd"
ln -rs "${BUILDPLACE}$BUILDDIR" "$BUILDPLACE/tmp/buildd"
else
- log "W: Could not create compatibily symlink because /tmp/buildd is not empty"
+ log "W: Could not create compatibility symlink because /tmp/buildd is not empty"
fi
elif [ ! -e "$BUILDPLACE/tmp/buildd" ]; then
ln -rs "${BUILDPLACE}$BUILDDIR" "$BUILDPLACE/tmp/buildd"
else
- log "W: Could not create compatibily symlink because /tmp/buildd exists and it is not a directory"
+ log "W: Could not create compatibility symlink because /tmp/buildd exists and it is not a directory"
fi
fi
}