Skip to content

Commit bbdbc0e

Browse files
committed
Remove relint check, which isn't available in all the emacsen we support
1 parent ec42902 commit bbdbc0e

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ INIT_PACKAGES="(progn \
4242
(require 'package) \
4343
(push '(\"melpa\" . \"https://melpa.org/packages/\") package-archives) \
4444
(package-initialize) \
45-
(dolist (pkg '(package-lint relint)) \
45+
(dolist (pkg '(package-lint)) \
4646
(unless (package-installed-p pkg) \
4747
(unless (assoc pkg package-archive-contents) \
4848
(package-refresh-contents)) \
@@ -98,13 +98,10 @@ check-ert: $(ELCHECKS)
9898
-f ert-run-tests-batch-and-exit
9999
@echo "checks passed!"
100100

101+
# TODO: fix issues, then enforce build failure if this fails
101102
check-package-lint:
102-
# TODO: fix issues, then enforce build failure if this fails
103103
$(BATCH) --eval $(INIT_PACKAGES) --eval '(setq package-lint-main-file "haskell-mode-pkg.el")' -f package-lint-batch-and-exit $(ELFILES) || true
104104

105-
check-relint:
106-
$(BATCH) --eval $(INIT_PACKAGES) -f relint-batch $(ELFILES)
107-
108105
clean:
109106
$(RM) -r build-$(EMACS_VERSION) $(AUTOLOADS) $(AUTOLOADS:.el=.elc) haskell-mode.info dir
110107

0 commit comments

Comments
 (0)