Skip to content

Commit

Permalink
Merge branch 'nd/make-wildmatch-default'
Browse files Browse the repository at this point in the history
* nd/make-wildmatch-default:
  Makefile: promote wildmatch to be the default fnmatch implementation
  • Loading branch information
Junio C Hamano committed Jun 20, 2013
2 parents fb7dfaa + 4917e1e commit 6aeb74e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ all::
# Define NO_FNMATCH_CASEFOLD if your fnmatch function doesn't have the
# FNM_CASEFOLD GNU extension.
#
# Define USE_WILDMATCH if you want to use Git's wildmatch
# Define NO_WILDMATCH if you do not want to use Git's wildmatch
# implementation as fnmatch
#
# Define NO_GECOS_IN_PWENT if you don't have pw_gecos in struct passwd
Expand Down Expand Up @@ -1278,7 +1278,7 @@ ifdef NO_FNMATCH_CASEFOLD
COMPAT_OBJS += compat/fnmatch/fnmatch.o
endif
endif
ifdef USE_WILDMATCH
ifndef NO_WILDMATCH
COMPAT_CFLAGS += -DUSE_WILDMATCH
endif
ifdef NO_SETENV
Expand Down

0 comments on commit 6aeb74e

Please sign in to comment.