summaryrefslogtreecommitdiff
path: root/make.tmpl.in
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2015-08-25 19:05:45 +0100
committerBryn M. Reeves <bmr@redhat.com>2015-08-25 19:05:45 +0100
commit8c09f12943a8136079360a05bc0afc120cfc7674 (patch)
tree3f51eec46dc34c187840e15fbdaeba1db24cd925 /make.tmpl.in
parent19ef3e0f31f375be72da875a5e6beb5d10af44df (diff)
downloadlvm2-8c09f12943a8136079360a05bc0afc120cfc7674.tar.gz
makefiles: remove stray ')'
Diffstat (limited to 'make.tmpl.in')
-rw-r--r--make.tmpl.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/make.tmpl.in b/make.tmpl.in
index 3e39a3a71..dbc839add 100644
--- a/make.tmpl.in
+++ b/make.tmpl.in
@@ -502,7 +502,7 @@ else
set -e;\
R=$$(sort $^ | 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\
+ for i in $$(echo $(EXPORTED_SYMBOLS) | tr ' ' '\n' | sort -rnt_ -k5 ); do\
echo "$${i##*.} {"; echo " global:";\
$(SED) "s/^/ /;s/$$/;/" $$i;\
test "$$i" = Base && { echo " local:"; echo " *;"; };\