3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: mariadb: Remove huge mysql_embedded executable.

* gnu/packages/databases.scm (mariadb)[arguments]: Adjust deletion regex.
This commit is contained in:
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

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))))))