From: Pavel Roskin Date: Fri, 30 Jun 2006 05:09:26 +0000 (-0400) Subject: Delete manuals if compiling without docs X-Git-Tag: v1.4.3-rc1~2^2~25 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1434dbce02aaa96ae5d0a1f4f000cce5727498fa;p=git.git Delete manuals if compiling without docs Otherwise, rpm would complain about unpacked files. Signed-off-by: Pavel Roskin Signed-off-by: Junio C Hamano --- diff --git a/git.spec.in b/git.spec.in index 8ccd2564e..b8feda325 100644 --- a/git.spec.in +++ b/git.spec.in @@ -86,6 +86,8 @@ make %{_smp_mflags} DESTDIR=$RPM_BUILD_ROOT WITH_OWN_SUBPROCESS_PY=YesPlease \ (find $RPM_BUILD_ROOT%{_bindir} -type f | grep -vE "arch|svn|cvs|email|gitk" | sed -e s@^$RPM_BUILD_ROOT@@) > bin-man-doc-files %if %{!?_without_docs:1}0 (find $RPM_BUILD_ROOT%{_mandir} $RPM_BUILD_ROOT/Documentation -type f | grep -vE "arch|svn|git-cvs|email|gitk" | sed -e s@^$RPM_BUILD_ROOT@@ -e 's/$/*/' ) >> bin-man-doc-files +%else +rm -rf $RPM_BUILD_ROOT%{_mandir} %endif %clean