removed useless yaml dependencies

This commit is contained in:
Václav Šmejkal 2024-01-26 07:33:14 +01:00
parent 57eba2caf6
commit 808bffbdd6
No known key found for this signature in database
GPG Key ID: A77FB9B47AD0B168
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ LIB_LOGGER=-l$(PROJECT_NAME)-logger
LIBS_LIB_CHAT=$(LIB_CORE) -lpthread LIBS_LIB_CHAT=$(LIB_CORE) -lpthread
LIB_CHAT=-l$(PROJECT_NAME)-chat LIB_CHAT=-l$(PROJECT_NAME)-chat
LIB_CHAT_CONFIG=$(LIB_CHAT)-config LIB_CHAT_CONFIG=$(LIB_CHAT)-config
LIBS_CHAT=$(LIB_CHAT) $(LIBS_LIB_CHAT) -lyaml $(LIB_CHAT_CONFIG) LIBS_CHAT=$(LIB_CHAT) $(LIBS_LIB_CHAT) $(LIB_CHAT_CONFIG)
# Install Files # Install Files
INSTALL_INCLUDE=/usr/include INSTALL_INCLUDE=/usr/include

View File

@ -43,7 +43,7 @@ elif [[ $DISTRO == "Gentoo" ]]; then
env-update && source /etc/profile env-update && source /etc/profile
else else
# 'Unsupported' distro # 'Unsupported' distro
echo "It seems you are using unsupported distribution... Don't worry, just install 'gcc', 'json-c', 'curl', 'libgit2', 'tmux', 'libyaml' and 'make' and you'll be fine." echo "It seems you are using unsupported distribution... Don't worry, just install 'gcc', 'json-c', 'curl', 'libgit2', 'tmux' and 'make' and you'll be fine."
exit exit
fi fi