summaryrefslogtreecommitdiff
path: root/make.tmpl.in
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2019-07-30 15:31:01 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2019-08-09 12:57:07 +0200
commitf2489d9dda78a9976b9655cd82efaa7ef6615e91 (patch)
treeb6bd9b258ca892a1cc8fc4b59c0389fd5eb4e8b1 /make.tmpl.in
parent3fcb4697f652e8f439b865f3b544b83576c156ae (diff)
downloadlvm2-f2489d9dda78a9976b9655cd82efaa7ef6615e91.tar.gz
make: support comments in exported symbols
Now the lines starting with '#' in exported symbols files are treated as comments (ignored).
Diffstat (limited to 'make.tmpl.in')
-rw-r--r--make.tmpl.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/make.tmpl.in b/make.tmpl.in
index f3332e91c..8a2081897 100644
--- a/make.tmpl.in
+++ b/make.tmpl.in
@@ -551,17 +551,17 @@ EXPORTED_SYMBOLS := $(wildcard $(srcdir)/.exported_symbols.Base $(srcdir)/.expor
.export.sym: .exported_symbols_generated $(EXPORTED_SYMBOLS)
ifeq (,$(firstword $(EXPORTED_SYMBOLS)))
$(Q) set -e; (echo "Base {"; echo " global:";\
- $(SED) "s/^/ /;s/$$/;/" $<;\
+ $(SED) "/^#/d;s/^/ /;s/$$/;/" $<;\
echo "};";\
echo "Local {"; echo " local:"; echo " *;"; echo "};";\
) > $@
else
$(Q) set -e;\
- R=$$($(SORT) $^ | uniq -u);\
+ R=$$($(SORT) $^ | $(GREP) -v "^#" | uniq -u);\
test -z "$$R" || { echo "Mismatch between symbols in shared library and lists in .exported_symbols.* files: $$R"; false; } ;\
( for i in $$(echo $(EXPORTED_SYMBOLS) | tr ' ' '\n' | $(SORT) -rnt_ -k5 ); do\
echo "$${i##*.} {"; echo " global:";\
- $(SED) "s/^/ /;s/$$/;/" $$i;\
+ $(SED) "/^#/d;s/^/ /;s/$$/;/" $$i;\
echo "};";\
done;\
echo "Local {"; echo " local:"; echo " *;"; echo "};";\