How about this update
```diff
diff --git a/src/modules/app_ruby/Makefile b/src/modules/app_ruby/Makefile
index 9e54ba2..66c71ff 100644
--- a/src/modules/app_ruby/Makefile
+++ b/src/modules/app_ruby/Makefile
@@ -7,10 +7,7 @@ include ../../Makefile.defs
auto_gen=
NAME=app_ruby.so
-RUBYVER=$(shell pkg-config --list-all | grep ruby-2 | tail -1 | cut -f 1 -d "
")
-ifeq ($(RUBYVER),)
-RUBYVER=ruby-2.3
-endif
+RUBYVER=$(shell pkg-config --list-all | grep ruby | tail -1 | cut -f 1 -d " ")
ifeq ($(CROSS_COMPILE),)
BUILDER = $(shell which pkg-config)
ifneq ($(BUILDER),)
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/1762#issuecomment-446899567