mariadb: Create compatibility symlinks
authorMichal Hrusecky <michal.hrusecky@turris.com>
Sat, 30 Oct 2021 21:53:58 +0000 (23:53 +0200)
committerRosen Penev <rosenp@gmail.com>
Mon, 29 Nov 2021 09:47:45 +0000 (01:47 -0800)
For every mysql* binary create corresponding mariadb binary and vice
versa.

Signed-off-by: Michal Hrusecky <michal.hrusecky@turris.com>
utils/mariadb/Makefile

index 15ef59d260aa2c6e1bb95c2420f5413013fd2381..a0d1fa84b6a1c59232449b5c732c92218d035dbb 100644 (file)
@@ -189,9 +189,8 @@ endef
 
 define Package/mariadb/install/bin
        $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(2) $(1)/usr/bin
-       cd "$(PKG_INSTALL_DIR)/usr/bin"; find . -maxdepth 1 -type l \
-               -regex './$(subst mysql,mariadb[-]*,$(subst _,-,$(2)))' \
-               | xargs  -I{} $(CP) {} "$(1)/usr/bin"
+       [ $(2) = $(subst mysql,mariadb,$(2)) ] || ln -s $(2) $(1)/usr/bin/$(subst mysql,mariadb,$(2))
+       [ $(2) = $(subst mariadb,mysql,$(2)) ] || ln -s $(2) $(1)/usr/bin/$(subst mariadb,mysql,$(2))
 endef
 
 define Package/mariadb/install/plugin