gnu: mariadb: Remove huge mysql_embedded executable.

* gnu/packages/databases.scm (mariadb)[arguments]: Adjust deletion regex.
master
Marius Bakke 2018-08-22 17:52:40 +02:00
parent 22f5c07624
commit 43cec3fb1e
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 2 additions and 2 deletions

View File

@ -779,8 +779,8 @@ Language.")
(for-each delete-file-recursively
'("data" "mysql-test" "sql-bench"
"share/man/man1/mysql-test-run.pl.1"))
;; Delete huge mysqltest executables.
(for-each delete-file (find-files "bin" "test"))
;; Delete huge and unnecessary executables.
(for-each delete-file (find-files "bin" "(test|embedded)"))
;; And static libraries.
(for-each delete-file (find-files "lib" "\\.a$")))
#t))))))