diff options
author | Eduardo Chappa <chappa@washington.edu> | 2023-01-21 12:56:43 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2023-01-21 12:56:43 -0700 |
commit | 4085c760c54eeb9cd828c9659117dc32bf179e42 (patch) | |
tree | f802f6388b179d7f857ab7bb47d186f9ca8909e8 | |
parent | c92df42385798c13c3d6aa688fe307663d7c049a (diff) | |
download | alpine-4085c760c54eeb9cd828c9659117dc32bf179e42.tar.xz |
* Fix for file imap/Makefile contributed by Paul Ferster that fixes
an issue that would make c-client fail to build if the CC variable
was set to a compiler that needs spaces (as "ccache gcc").
-rw-r--r-- | imap/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/imap/Makefile b/imap/Makefile index d459ef3f..f6528bbd 100644 --- a/imap/Makefile +++ b/imap/Makefile @@ -706,7 +706,7 @@ rebuild: @$(SH) -c '(test $(BUILDTYPE) = rebuild -o $(BUILDTYPE) = `$(CAT) OSTYPE`) || (echo Already built for `$(CAT) OSTYPE` -- you must do \"make clean\" first && exit 1)' @echo Rebuilding c-client for `$(CAT) OSTYPE`... @$(TOUCH) SPECIALS - $(CD) c-client;$(MAKE) all CC=`$(CAT) CCTYPE` \ + $(CD) c-client;$(MAKE) all CC="`$(CAT) CCTYPE`" \ CFLAGS="`$(CAT) CFLAGS`" `$(CAT) SPECIALS` rebuildclean: |