• R/O
  • HTTP
  • SSH
  • HTTPS

pg_hint_plan: Commit

firtst release


Commit MetaInfo

Revisionf28251811c08a205b334c84caea6e8f5253c9498 (tree)
Time2020-07-14 16:02:17
AuthorLucyLikeMilk <49512789+LucyLikeMilk@user...>
CommiterKyotaro Horiguchi

Log Message

Fix compiling error on Solaris

Solaris doesn't like 'LDFLAGS+=-Wl,--build-id' option is for rpm
building. This has been applied on other branches but overlooked on
this branch.

Change Summary

Incremental Difference

--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,9 @@ TARSOURCES = Makefile *.c *.h COPYRIGHT* \
3131 doc/* expected/*.out sql/*.sql sql/maskout.sh \
3232 data/data.csv input/*.source output/*.source SPECS/*.spec
3333
34+ifneq ($(shell uname), SunOS)
3435 LDFLAGS+=-Wl,--build-id
36+endif
3537
3638 installcheck: $(REGRESSION_EXPECTED)
3739
Show on old repository browser