mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Fix VPATH builds for src/test/ssl targets
Commit b4c4a00ea
refactored the gist of the sslfiles target into a
separate makefile in order to override settings in Makefile.global.
The invocation of this this file didn't however include the absolute
path for VPATH builds, resulting in "make clean" failing. Fix by
providing the path to the new makefile.
Reported-by: Andres Freund <andres@anarazel.de>
Discussion: https://postgr.es/m/20211026174152.jjcagswnbhxu7uqz@alap3.anarazel.de
This commit is contained in:
@ -19,11 +19,11 @@ export with_ssl
|
||||
# with settings in Makefile.global.
|
||||
.PHONY: sslfiles sslfiles-clean
|
||||
sslfiles sslfiles-clean:
|
||||
$(MAKE) -f sslfiles.mk $@
|
||||
$(MAKE) -f $(srcdir)/sslfiles.mk $@
|
||||
|
||||
clean distclean maintainer-clean:
|
||||
rm -rf tmp_check
|
||||
$(MAKE) -f sslfiles.mk $@
|
||||
$(MAKE) -f $(srcdir)/sslfiles.mk $@
|
||||
|
||||
# Doesn't depend on sslfiles because we don't rebuild them by default
|
||||
check:
|
||||
|
Reference in New Issue
Block a user