diff options
| author | Jan Cholasta <jcholast@redhat.com> | 2016-12-05 12:17:54 +0100 |
|---|---|---|
| committer | Martin Babinsky <mbabinsk@redhat.com> | 2016-12-19 13:39:17 +0100 |
| commit | 1b85e59ceeb115dfb24e9c6bacb665b935f9543c (patch) | |
| tree | 27eb8aecab6e3dc811a87298a2511f488a2c6319 | |
| parent | 8bc677512296a7e94c29edd0c1a96aa7273f352a (diff) | |
spec file: do not define with_lint inside a comment
RPM expands macros even inside comments in spec files, so the with_lint
macro is unintentionally always defined.
Escape the percent sign in '%global' in the comment to prevent this.
https://fedorahosted.org/freeipa/ticket/6418
Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
| -rw-r--r-- | freeipa.spec.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/freeipa.spec.in b/freeipa.spec.in index fbb39451c..831df4f65 100644 --- a/freeipa.spec.in +++ b/freeipa.spec.in @@ -9,7 +9,7 @@ %endif # lint is not executed during rpmbuild -# %global with_lint 1 +# %%global with_lint 1 %global alt_name ipa %if 0%{?rhel} |
