diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-08 10:13:50 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-08 10:13:50 +0300 |
commit | fe1c66dc1cde910f189cca3e8461d092e3aa239c (patch) | |
tree | 48dfe7a6fb0f095498b60c0c21c79e58bfe10522 | |
parent | debian: 0.0.1-2 (diff) | |
download | linux-status-fe1c66dc1cde910f189cca3e8461d092e3aa239c.tar.gz linux-status-fe1c66dc1cde910f189cca3e8461d092e3aa239c.zip |
debian: target the lowest denominator bionic
-rw-r--r-- | debian/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/debian/Makefile b/debian/Makefile index 057f6a7..60f1267 100644 --- a/debian/Makefile +++ b/debian/Makefile @@ -23,7 +23,7 @@ endef PPA_OWNER ?= egor-tensin PPA_NAME ?= linux-status GPG_KEY ?= 3B3EF1235420917E0DB0723991D679FB92B036CB -DIST ?= focal +DIST ?= bionic $(eval $(call escape_arg,PPA_OWNER)) $(eval $(call escape_arg,PPA_NAME)) @@ -78,12 +78,6 @@ dist: upload: find '$(call escape,$(build_area))' -type f -name '*.changes' -exec dput 'ppa:$(call escape,$(PPA_OWNER))/$(call escape,$(PPA_NAME))/ubuntu/$(DIST)' {} ';' -upload/%: DO - find '$(call escape,$(build_area))' -type f -name '*.changes' -exec dput 'ppa:$(call escape,$(PPA_OWNER))/$(call escape,$(PPA_NAME))/ubuntu/$*' {} ';' - -.PHONY: upload-all -upload-all: upload/bionic upload/focal upload/groovy - .PHONY: clean clean: rm -rf -- '$(call escape,$(build_area))' |