Skip to content
Snippets Groups Projects
Commit 7882d131 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Merge branch 'master' into minimakefile

parents 84cebea0 4a7c25cb
Branches
Tags
No related merge requests found
...@@ -216,7 +216,7 @@ Allegro <bugs@franz.com>, ...@@ -216,7 +216,7 @@ Allegro <bugs@franz.com>,
Clozure CL <openmcl-devel@clozure.com>, Clozure CL <openmcl-devel@clozure.com>,
GNU CLISP <clisp-list@lists.sourceforge.net> (sds), GNU CLISP <clisp-list@lists.sourceforge.net> (sds),
CMU CL <cmucl-imp@cmucl.cons.org>, CMU CL <cmucl-imp@cmucl.cons.org>,
ECL <ecls-list@lists.sourceforge.net>, ECL <ecl-devel@common-lisp.net>,
GCL <gcl-devel@gnu.org>, GCL <gcl-devel@gnu.org>,
LispWorks <lisp-support@lispworks.com>, LispWorks <lisp-support@lispworks.com>,
MKCL <jean.claude.beaudoin@gmail.com>, MKCL <jean.claude.beaudoin@gmail.com>,
......
...@@ -60,11 +60,11 @@ ...@@ -60,11 +60,11 @@
destination)) destination))
(ensure-directories-exist destination) (ensure-directories-exist destination)
(run* `(cp "-pHux" --parents ,@files ,destination) :directory base :show t) (run* `(cp "-pHux" --parents ,@files ,destination) :directory base :show t)
(run* `(tar "zcfC" ,tarball ,*build-dir* (run* `(tar "zcf" ,tarball "-C" ,*build-dir*
;; TODO: Have better autodetection for which tar is being used, ;; TODO: Have better autodetection for which tar is being used,
;; and fall back to no option if not recognized. ;; and fall back to no option if not recognized.
#+linux (* :owner root :group root) ;; assume GNU tar on Linux. ;; #+linux (* :owner root :group root) ;; assume GNU tar on Linux.
#+darwin (* :uid 0 :gid 0) ;; assume BSD tar on Darwin. ;; #+darwin (* :uid 0 :gid 0) ;; assume BSD tar on Darwin.
(,name /)) :show t) (,name /)) :show t)
(delete-directory-tree destination :validate #'(lambda (x) (equal x destination))) (delete-directory-tree destination :validate #'(lambda (x) (equal x destination)))
(success))) (success)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment