diff options
author | luo.runbing <luo.runbing@zte.com.cn> | 2021-02-09 02:18:18 +0100 |
---|---|---|
committer | luo.runbing <luo.runbing@zte.com.cn> | 2021-02-09 02:39:41 +0100 |
commit | 893924c20d7fc0e46a47d597e437858314b396e2 (patch) | |
tree | b6eec928a3eba7aa5a715adc4d3e85265a1edfef /ceph.spec.in | |
parent | Merge pull request #39332 from cyx1231st/wip-seastore-range-query (diff) | |
download | ceph-893924c20d7fc0e46a47d597e437858314b396e2.tar.xz ceph-893924c20d7fc0e46a47d597e437858314b396e2.zip |
ceph.spec.in: fix missing backslash for line continuation
it errors while building without lua_packages:
+ -DBOOST_J=102 -DWITH_GRAFANA=ON
/var/tmp/rpm-tmp.aq2X3J: line 91: -DBOOST_J=102: command not found
Signed-off-by: luo.runbing <luo.runbing@zte.com.cn>
Diffstat (limited to 'ceph.spec.in')
-rw-r--r-- | ceph.spec.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ceph.spec.in b/ceph.spec.in index 8642fecdcfb..6c359cfd526 100644 --- a/ceph.spec.in +++ b/ceph.spec.in @@ -1265,7 +1265,7 @@ ${CMAKE} .. \ -DWITH_RADOSGW_KAFKA_ENDPOINT=OFF \ %endif %if 0%{without lua_packages} - -DWITH_RADOSGW_LUA_PACKAGES=OFF + -DWITH_RADOSGW_LUA_PACKAGES=OFF \ %endif %if 0%{with zbd} -DWITH_ZBD=ON \ |