diff options
-rw-r--r-- | scripts/guix.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/guix.scm b/scripts/guix.scm index 006b980..2ef3318 100644 --- a/scripts/guix.scm +++ b/scripts/guix.scm @@ -280,10 +280,8 @@ (lambda* (#:key inputs #:allow-other-keys) (mkdir-p "core") - (with-directory-excursion - "core" - (invoke "tar" "axf" (assoc-ref inputs "android-core") - "--strip-components=1")) + (copy-recursively (assoc-ref inputs "android-core") + "core") #t)) (delete 'bootstrap) (add-before |