diff options
author | Konstantin Pavlov <thresh@nginx.com> | 2023-05-03 16:13:36 -0700 |
---|---|---|
committer | Konstantin Pavlov <thresh@nginx.com> | 2023-05-03 16:13:36 -0700 |
commit | 7a77f48a25f4f719c51ed83dac9bf5dd844ba3f3 (patch) | |
tree | 7dca75b973eca01ee5c411ff5d0bcb574fbd026f /pkg/deb/Makefile | |
parent | 20a5fd44acd4ccdd95a3425dcb095623e8872848 (diff) | |
download | unit-7a77f48a25f4f719c51ed83dac9bf5dd844ba3f3.tar.gz unit-7a77f48a25f4f719c51ed83dac9bf5dd844ba3f3.tar.bz2 |
Packages: added Ubuntu 23.04 "lunar" support.
Diffstat (limited to 'pkg/deb/Makefile')
-rw-r--r-- | pkg/deb/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/deb/Makefile b/pkg/deb/Makefile index 575a0984..09544892 100644 --- a/pkg/deb/Makefile +++ b/pkg/deb/Makefile @@ -19,6 +19,21 @@ BUILD_DEPENDS = $(BUILD_DEPENDS_unit) MODULES= +# Ubuntu 23.04 +ifeq ($(CODENAME),lunar) +include Makefile.php +include Makefile.python311 +include Makefile.go +include Makefile.perl +include Makefile.ruby +include Makefile.jsc-common +include Makefile.jsc11 +include Makefile.jsc17 +include Makefile.jsc18 +include Makefile.jsc19 +include Makefile.jsc20 +endif + # Ubuntu 22.10 ifeq ($(CODENAME),kinetic) include Makefile.php |