aps: Remove uncessesarry IFS meddling
This commit is contained in:
parent
d27be12db3
commit
ffbc42ee2c
1 changed files with 1 additions and 3 deletions
|
@ -34,14 +34,12 @@ target=$(. "$CONTROL"; echo "${TARGET}")
|
||||||
subtarget=$(. "$CONTROL"; echo "${SUBTARGET}")
|
subtarget=$(. "$CONTROL"; echo "${SUBTARGET}")
|
||||||
|
|
||||||
(
|
(
|
||||||
IFS='
|
|
||||||
'
|
|
||||||
# `make` below consumes these
|
# `make` below consumes these
|
||||||
export PROFILE PACKAGES
|
export PROFILE PACKAGES
|
||||||
|
|
||||||
. "$CONTROL"
|
. "$CONTROL"
|
||||||
|
|
||||||
tmp=$(mktemp --tmpdir -d files.XXXXXXXXX)
|
tmp="$(mktemp --tmpdir -d files.XXXXXXXXX)"
|
||||||
|
|
||||||
mkdir -p "$tmp"/etc
|
mkdir -p "$tmp"/etc
|
||||||
echo "$VERSION" > "$tmp"/etc/its-access-point-version
|
echo "$VERSION" > "$tmp"/etc/its-access-point-version
|
||||||
|
|
Loading…
Reference in a new issue