aboutsummaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2012-12-14 11:47:09 +0100
committerLudovic Courtès <ludo@gnu.org>2012-12-14 22:12:37 +0100
commit0d12bea3067da11ba3e2b9edf54d83cfc6b7b478 (patch)
tree11cd8cd12a0eaf1a1bc495f874374ee3fab252e0 /nix
parente1b7096acdd3dedbdca92a6d20ade94b21d8561d (diff)
downloadguix-0d12bea3067da11ba3e2b9edf54d83cfc6b7b478.tar
guix-0d12bea3067da11ba3e2b9edf54d83cfc6b7b478.tar.gz
build: Avoid brace expansion in `nix/sync-with-upstream'.
* nix/sync-with-upstream: Avoid brace expansion, for the sake of Dash.
Diffstat (limited to 'nix')
-rwxr-xr-xnix/sync-with-upstream3
1 files changed, 2 insertions, 1 deletions
diff --git a/nix/sync-with-upstream b/nix/sync-with-upstream
index 69bd1fbee7..1f11fd7d47 100755
--- a/nix/sync-with-upstream
+++ b/nix/sync-with-upstream
@@ -61,7 +61,8 @@ do
fi
done
-cp -v "$top_srcdir/nix-upstream/"{COPYING,AUTHORS} "$top_srcdir/nix"
+cp -v "$top_srcdir/nix-upstream/COPYING" "$top_srcdir/nix"
+cp -v "$top_srcdir/nix-upstream/AUTHORS" "$top_srcdir/nix"
# Substitutions.
sed -i "$top_srcdir/nix/libstore/gc.cc" \