diff options
author | HyungGi Lee <hyunggi.lee@samsung.com> | 2015-12-09 16:00:00 +0900 |
---|---|---|
committer | MyungJoo Ham <myungjoo.ham@samsung.com> | 2017-10-11 15:22:00 +0900 |
commit | af0678f430a3001deaab76537a378e962f9bbf72 (patch) | |
tree | 3b581f7485084ddf6166f808e65c33697769f100 | |
parent | 5a055668b39e1bc43c394ca78f0a8fe71d170bc1 (diff) | |
download | cmake-af0678f430a3001deaab76537a378e962f9bbf72.tar.gz cmake-af0678f430a3001deaab76537a378e962f9bbf72.tar.bz2 cmake-af0678f430a3001deaab76537a378e962f9bbf72.zip |
Removed curl dependency by using cmake internal curl
Change-Id: I71a1e4e6516702e5bf28d6702b8e588eb3e4b202
Signed-off-by: HyungGi Lee <hyunggi.lee@samsung.com>
-rw-r--r-- | packaging/cmake.spec | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packaging/cmake.spec b/packaging/cmake.spec index 21acd7791..9d63dd5ac 100644 --- a/packaging/cmake.spec +++ b/packaging/cmake.spec @@ -12,7 +12,6 @@ Source1001: cmake.manifest BuildRequires: fdupes BuildRequires: expat-devel BuildRequires: pkgconfig(libarchive) >= 2.8.0 -BuildRequires: pkgconfig(libcurl) BuildRequires: pkgconfig(zlib) BuildRequires: procps BuildRequires: ncurses-devel @@ -41,11 +40,12 @@ export CFLAGS="$CXXFLAGS" --mandir=/share/man \ --system-libs \ --parallel=0%jobs \ - --no-qt-gui + --no-qt-gui \ + --no-system-curl %__make VERBOSE=1 %{?_smp_mflags} %install -%make_install +%make_install mkdir -p %{buildroot}%{_libdir}/%{name} find %{buildroot}%{_datadir}/%{name} -type f -print0 | xargs -0 chmod 644 cp %{SOURCE2} %{buildroot}%{_datadir}/%{name}/Modules |