firtst release
Revision | f28251811c08a205b334c84caea6e8f5253c9498 (tree) |
---|---|
Time | 2020-07-14 16:02:17 |
Author | LucyLikeMilk <49512789+LucyLikeMilk@user...> |
Commiter | Kyotaro Horiguchi |
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.
@@ -31,7 +31,9 @@ TARSOURCES = Makefile *.c *.h COPYRIGHT* \ | ||
31 | 31 | doc/* expected/*.out sql/*.sql sql/maskout.sh \ |
32 | 32 | data/data.csv input/*.source output/*.source SPECS/*.spec |
33 | 33 | |
34 | +ifneq ($(shell uname), SunOS) | |
34 | 35 | LDFLAGS+=-Wl,--build-id |
36 | +endif | |
35 | 37 | |
36 | 38 | installcheck: $(REGRESSION_EXPECTED) |
37 | 39 |