Skip to content

Commit

Permalink
Merge pull request #4139 from kmk3/makefiles-rm-cclass
Browse files Browse the repository at this point in the history
makefiles: replace character class with plain char
  • Loading branch information
netblue30 committed Mar 24, 2021
2 parents 78ad7e9 + 7c2ef65 commit 20dce35
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/common.mk.in
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ HAVE_OUTPUT=@HAVE_OUTPUT@
HAVE_LTS=@HAVE_LTS@
HAVE_FORCE_NONEWPRIVS=@HAVE_FORCE_NONEWPRIVS@

H_FILE_LIST = $(sort $(wildcard *.[h]))
H_FILE_LIST = $(sort $(wildcard *.h))
C_FILE_LIST = $(sort $(wildcard *.c))
OBJS = $(C_FILE_LIST:.c=.o)
BINOBJS = $(foreach file, $(OBJS), $file)
Expand Down
2 changes: 1 addition & 1 deletion src/libpostexecseccomp/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ VERSION=@PACKAGE_VERSION@
NAME=@PACKAGE_NAME@
HAVE_FATAL_WARNINGS=@HAVE_FATAL_WARNINGS@

H_FILE_LIST = $(sort $(wildcard *.[h]))
H_FILE_LIST = $(sort $(wildcard *.h))
C_FILE_LIST = $(sort $(wildcard *.c))
OBJS = $(C_FILE_LIST:.c=.o)
BINOBJS = $(foreach file, $(OBJS), $file)
Expand Down
2 changes: 1 addition & 1 deletion src/libtrace/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ VERSION=@PACKAGE_VERSION@
NAME=@PACKAGE_NAME@
HAVE_FATAL_WARNINGS=@HAVE_FATAL_WARNINGS@

H_FILE_LIST = $(sort $(wildcard *.[h]))
H_FILE_LIST = $(sort $(wildcard *.h))
C_FILE_LIST = $(sort $(wildcard *.c))
OBJS = $(C_FILE_LIST:.c=.o)
BINOBJS = $(foreach file, $(OBJS), $file)
Expand Down
2 changes: 1 addition & 1 deletion src/libtracelog/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ VERSION=@PACKAGE_VERSION@
NAME=@PACKAGE_NAME@
HAVE_FATAL_WARNINGS=@HAVE_FATAL_WARNINGS@

H_FILE_LIST = $(sort $(wildcard *.[h]))
H_FILE_LIST = $(sort $(wildcard *.h))
C_FILE_LIST = $(sort $(wildcard *.c))
OBJS = $(C_FILE_LIST:.c=.o)
BINOBJS = $(foreach file, $(OBJS), $file)
Expand Down

0 comments on commit 20dce35

Please sign in to comment.