Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit a14dfe3

Browse files
ndanylukthaJeztah
authored andcommitted
Fixed duplicates of ubuntu, debian, & raspbian
(cherry picked from commit e6445e3) Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 42d8cc1da4ea14a7f5129b76cc7eb96478a4fc3d Component: packaging
1 parent ff404f9 commit a14dfe3

1 file changed

Lines changed: 9 additions & 23 deletions

File tree

components/packaging/deb/Makefile

Lines changed: 9 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -61,46 +61,32 @@ deb: ubuntu debian raspbian ## build all deb packages
6161
ubuntu: ubuntu-bionic ubuntu-xenial ## build all ubuntu deb packages
6262

6363
.PHONY: debian
64-
debian: debian-stretch ## build all debian deb packages
64+
debian: debian-stretch debian-buster ## build all debian deb packages
6565

6666
.PHONY: raspbian
67-
raspbian: raspbian-stretch ## build all raspbian deb packages
67+
raspbian: raspbian-stretch raspbian-buster ## build all raspbian deb packages
6868

6969
.PHONY: ubuntu-%
70-
ubuntu-%: ## build ubuntu deb packages
70+
## build ubuntu deb packages
7171
ubuntu-%: $(SOURCES)
7272
$(BUILD)
7373
$(RUN)
7474
$(CHOWN) -R $(shell id -u):$(shell id -g) debbuild/$@
7575

76-
.PHONY: debian-buster
77-
debian-buster: ## build debian buster deb packages
78-
debian-buster: $(SOURCES)
76+
.PHONY: debian-%
77+
## build debian deb packages
78+
debian-%: $(SOURCES)
7979
$(BUILD)
8080
$(RUN)
8181
$(CHOWN) -R $(shell id -u):$(shell id -g) debbuild/$@
8282

83-
.PHONY: debian-stretch
84-
debian-stretch: ## build debian stretch deb packages
85-
debian-stretch: $(SOURCES)
83+
.PHONY: raspbian-%
84+
## build raspbian deb packages
85+
raspbian-%: $(SOURCES)
8686
$(BUILD)
8787
$(RUN)
8888
$(CHOWN) -R $(shell id -u):$(shell id -g) debbuild/$@
8989

90-
.PHONY: raspbian-stretch
91-
raspbian-stretch: ## build raspbian stretch deb packages
92-
raspbian-stretch: $(SOURCES)
93-
$(BUILD)
94-
$(RUN)
95-
$(CHOWN) -R $(shell id -u):$(shell id -g) debbuild/$@
96-
97-
.PHONY: raspbian-buster
98-
raspbian-buster: ## build raspbian buster deb packages
99-
raspbian-buster: $(SOURCES)
100-
$(BUILD)
101-
$(RUN)
102-
$(CHOWN) -R $(shell id -u):$(shell id -g) debbuild/$@
103-
10490
sources/engine.tgz:
10591
mkdir -p $(@D)
10692
docker run --rm -i -w /v \

0 commit comments

Comments
 (0)