Skip to content

Commit

Permalink
Fix typo in makefile
Browse files Browse the repository at this point in the history
The correct spelling is `.SUFFIXES`.  The misspelling probably didn't
matter because we also use `--no-builtin-rules`.
  • Loading branch information
meribold committed Nov 17, 2018
1 parent 1f34305 commit 41fbf24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SHELL := /bin/sh
MAKEFLAGS += --no-builtin-rules

# Clear the suffix list. See section 7.2.1 of the GNU Coding Standards.
.SUFFICES:
.SUFFIXES:

# gnu.org/prep/standards/html_node/Makefile-Basics.html

Expand Down

0 comments on commit 41fbf24

Please sign in to comment.