summaryrefslogtreecommitdiffhomepage
path: root/pkg/deb/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--pkg/deb/Makefile12
-rw-r--r--pkg/deb/Makefile.jsc-common2
2 files changed, 13 insertions, 1 deletions
diff --git a/pkg/deb/Makefile b/pkg/deb/Makefile
index 0ad98d80..952408cd 100644
--- a/pkg/deb/Makefile
+++ b/pkg/deb/Makefile
@@ -78,6 +78,18 @@ include Makefile.python
include Makefile.perl
endif
+# Debian 10
+ifeq ($(CODENAME),buster)
+include Makefile.php
+include Makefile.python27
+include Makefile.python37
+include Makefile.go111
+include Makefile.perl
+include Makefile.ruby
+include Makefile.jsc-common
+include Makefile.jsc11
+endif
+
# Debian 9
ifeq ($(CODENAME),stretch)
include Makefile.php
diff --git a/pkg/deb/Makefile.jsc-common b/pkg/deb/Makefile.jsc-common
index 080e248f..30f777fd 100644
--- a/pkg/deb/Makefile.jsc-common
+++ b/pkg/deb/Makefile.jsc-common
@@ -6,7 +6,7 @@ MODULE_SUMMARY_jsc_common= Java shared packages for NGINX Unit
MODULE_VERSION_jsc_common= $(VERSION)
MODULE_RELEASE_jsc_common= 1
-ifeq ($(CODENAME),disco)
+ifneq (,$(findstring $(CODENAME),disco buster))
JAVA_MINVERSION= 11
else
JAVA_MINVERSION= 8