summaryrefslogtreecommitdiffstats
path: root/functions
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2012-09-04 16:07:40 +0200
committerDave Reisner <dreisner@archlinux.org>2012-09-17 16:31:06 +0200
commit49cfeccb335583ca1dd9e519b9504ca52b9a74ca (patch)
tree6814173cc7baa7df5bb4ced9a1c1fb0b3445700b /functions
parent8eea59aae56cf5e153560e7e776070906c6af2bc (diff)
downloadmkinitcpio-49cfeccb335583ca1dd9e519b9504ca52b9a74ca.tar.gz
mkinitcpio-49cfeccb335583ca1dd9e519b9504ca52b9a74ca.tar.xz
functions: allow add_symlink to only take a single arg
In the case of a single arg, use readlink(1) to resolve the target of the symlink. Document this, and additionally note the lack of guarantee about the target of the symlink. Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'functions')
-rw-r--r--functions25
1 files changed, 18 insertions, 7 deletions
diff --git a/functions b/functions
index 4f25a86..8a270fd 100644
--- a/functions
+++ b/functions
@@ -402,22 +402,33 @@ add_dir() {
}
add_symlink() {
- # Add a symlink to the initcpio image.
+ # Add a symlink to the initcpio image. There is no checking done
+ # to ensure that the target of the symlink exists.
# $1: pathname of symlink on image
- # $2: absolute path to target of symlink
+ # $2: absolute path to target of symlink (optional, can be read from $1)
- (( $# == 2 )) || return 1
+ local name_=$1 target_=$2
- add_dir "${1%/*}"
+ (( $# == 1 || $# == 2 )) || return 1
+
+ if [[ -z $target_ ]]; then
+ target_=$(readlink -f "$name_")
+ if [[ -z $target_ ]]; then
+ error 'invalid symlink: %s' "$name_"
+ return 1
+ fi
+ fi
+
+ add_dir "${name_%/*}"
if (( ! QUIET )); then
if [[ -L $BUILDROOT$1 ]]; then
- plain "overwriting symlink %s -> %s" "$1" "$2"
+ plain "overwriting symlink %s -> %s" "$name_" "$target_"
else
- plain "adding symlink: %s -> %s" "$1" "$2"
+ plain "adding symlink: %s -> %s" "$name_" "$target_"
fi
fi
- ln -sfn "$2" "$BUILDROOT$1"
+ ln -sfn "$target_" "$BUILDROOT$name_"
}
add_file() {