summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Coe <bluemrp9@gmail.com>2018-07-26 09:37:01 -0700
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2018-07-30 14:09:17 +0200
commitd0a0d49c20b250a71e649268df1328fca139a879 (patch)
tree27423dc1a8e290e29da3cf754051150da8a4943b
parenta76eab228f0bde8597bb6431733e3e1a8d25f806 (diff)
downloadbuildroot-d0a0d49c20b250a71e649268df1328fca139a879.tar.gz
buildroot-d0a0d49c20b250a71e649268df1328fca139a879.zip
mariadb: move comments outside of define block
There are two comments inside the post install define block that show up in the build. Fix this by moving the comments outside the block. Signed-off-by: Ryan Coe <bluemrp9@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r--package/mariadb/mariadb.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/mariadb/mariadb.mk b/package/mariadb/mariadb.mk
index ce846d9cda..e395d387e5 100644
--- a/package/mariadb/mariadb.mk
+++ b/package/mariadb/mariadb.mk
@@ -104,13 +104,13 @@ define MARIADB_INSTALL_INIT_SYSTEMD
endef
endif
+# We don't need mysql_config on the target as it's only useful in staging
+# We also don't need the test suite on the target
define MARIADB_POST_INSTALL
mkdir -p $(TARGET_DIR)/var/lib/mysql
$(INSTALL) -D -m 644 $(TARGET_DIR)/usr/share/mysql/my-small.cnf \
$(TARGET_DIR)/etc/mysql/my.cnf
- # We don't need this on the target as it's only useful in staging
$(RM) $(TARGET_DIR)/usr/bin/mysql_config
- # Remove test suite
$(RM) -r $(TARGET_DIR)/usr/share/mysql/test
endef
OpenPOWER on IntegriCloud