diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2021-07-06 13:41:31 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2021-07-06 13:41:31 -0400 |
commit | 8e07f30cd7229d648b591e044d7fc38b1f1e531a (patch) | |
tree | 6824d10fe8a14067c9d097f01b94fe927cf382b0 | |
parent | b916af97dd82b3321e54e34a92fe72909db6c6a8 (diff) |
Fix some makefile misspellings
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
-rw-r--r-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -146,11 +146,9 @@ clean: .PHONY: deb deb: all -# --unsigned-source --unsigned-changes --no-pre-clean --build=binary -# --diff-ignore --tar-ignore debuild -us -uc -nc -b -i -I -.PHONE: update-bcachefs-sources +.PHONY: update-bcachefs-sources update-bcachefs-sources: git rm -rf --ignore-unmatch libbcachefs test -d libbcachefs || mkdir libbcachefs @@ -170,6 +168,6 @@ update-bcachefs-sources: git -C $(LINUX_DIR) rev-parse HEAD | tee .bcachefs_revision git add .bcachefs_revision -.PHONE: update-commit-bcachefs-sources +.PHONY: update-commit-bcachefs-sources update-commit-bcachefs-sources: update-bcachefs-sources git commit -m "Update bcachefs sources to $(shell git -C $(LINUX_DIR) show --oneline --no-patch)" |