Skip to content

Commit

Permalink
fix: install rollup-init and xhalt in proper places
Browse files Browse the repository at this point in the history
  • Loading branch information
edubart committed Jan 22, 2025
1 parent 37318e8 commit ebff128
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
MAJOR := 0
MINOR := 17
PATCH := 0
LABEL := -test1
LABEL := -test2
VERSION := $(MAJOR).$(MINOR).$(PATCH)$(LABEL)

TOOLS_TARGZ := machine-guest-tools-v$(VERSION).tar.gz
Expand Down
1 change: 1 addition & 0 deletions rollup-http/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ all:
install: rollup-http-server echo-dapp
install -Dm755 rollup-http-server/$(RUST_TARGET_DIR)/rollup-http-server $(DESTDIR)$(PREFIX)/bin/rollup-http-server
install -Dm755 echo-dapp/$(RUST_TARGET_DIR)/echo-dapp $(DESTDIR)$(PREFIX)/bin/echo-dapp
install -Dm755 rollup-init/rollup-init $(DESTDIR)$(PREFIX)/bin/rollup-init

clean:
rm -rf rollup-http-server/target echo-dapp/target
Expand Down
2 changes: 1 addition & 1 deletion sys-utils/xhalt/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ xhalt: xhalt.c
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)

install: xhalt
install -Dm755 xhalt $(DESTDIR)$(PREFIX)/bin/xhalt
install -Dm755 xhalt $(DESTDIR)$(PREFIX)/sbin/xhalt

clean:
@rm -f xhalt

0 comments on commit ebff128

Please sign in to comment.