diff options
author | Eduardo Chappa <chappa@washington.edu> | 2021-11-14 09:43:51 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2021-11-14 09:43:51 -0700 |
commit | 9efe0684c7cad16264da0e5c90c509d494562ddb (patch) | |
tree | fcaa5b8580e1e960012ebfe02ce0109e203f605e /imap/src | |
parent | 216ad987323d8984de2dd9cccdf200a8f801d740 (diff) | |
download | alpine-9efe0684c7cad16264da0e5c90c509d494562ddb.tar.xz |
* Replace fgre and grep -F and egrep by grep -E as these have been
deprecated. Patch submitted by Ville Skyttä.
Diffstat (limited to 'imap/src')
-rw-r--r-- | imap/src/osdep/unix/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/imap/src/osdep/unix/Makefile b/imap/src/osdep/unix/Makefile index dd98eb81..b940d4ad 100644 --- a/imap/src/osdep/unix/Makefile +++ b/imap/src/osdep/unix/Makefile @@ -1009,7 +1009,7 @@ onceenv: $(LN) sig_$(SIGTYPE).c siglocal.c $(LN) crx_$(CRXTYPE).c crexcl.c $(LN) ip$(IP)_unix.c ip_unix.c - sh -c '(test $(OS) = sc5 -o $(OS) = sco -o ! -f /usr/include/sys/statvfs.h) && echo -DNOFSTATVFS >> OSCFLAGS || fgrep statvfs64 /usr/include/sys/statvfs.h > /dev/null || echo -DNOFSTATVFS64 >> OSCFLAGS' + sh -c '(test $(OS) = sc5 -o $(OS) = sco -o ! -f /usr/include/sys/statvfs.h) && echo -DNOFSTATVFS >> OSCFLAGS || grep -F statvfs64 /usr/include/sys/statvfs.h > /dev/null || echo -DNOFSTATVFS64 >> OSCFLAGS' # Password checkers |