OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 24-Jul-2003 14:58:53
Branch: HEAD Handle: 2003072413585300
Modified files:
openpkg-src/gcc34 gcc34.spec
Log:
try to fix '.info' stuff
Summary:
Revision Changes Path
1.6 +4 -1 openpkg-src/gcc34/gcc34.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/gcc34/gcc34.spec
============================================================================
$ cvs diff -u -r1.5 -r1.6 gcc34.spec
--- openpkg-src/gcc34/gcc34.spec 24 Jul 2003 09:39:35 -0000 1.5
+++ openpkg-src/gcc34/gcc34.spec 24 Jul 2003 12:58:53 -0000 1.6
@@ -54,7 +54,7 @@
# build information
Prefix: %{l_prefix}
BuildRoot: %{l_buildroot}
-BuildPreReq: OpenPKG, openpkg >= 20030103, make, flex, bison
+BuildPreReq: OpenPKG, openpkg >= 20030103, make, flex, bison, texinfo
PreReq: OpenPKG, openpkg >= 20030103
%if "%{with_binutils}" == "yes"
BuildPreReq: binutils >= 2.13
@@ -225,16 +225,19 @@
%if "%{with_gcc}" != "yes" && "%{V_comp}" != ""
( cd $RPM_BUILD_ROOT%{l_prefix}/bin
for file in *; do
+ [ ".$file" = ".*" ] && continue
mv ${file} ${file}%{V_comp}
done
) || exit $?
( cd $RPM_BUILD_ROOT%{l_prefix}/info
for file in *; do
+ [ ".$file" = ".*" ] && continue
mv ${file} `echo ${file} | sed -e 's;^\([^.]*\)\(\..*\)$;\1%{V_comp}\2;'`
done
) || exit $?
( cd $RPM_BUILD_ROOT%{l_prefix}/man/man1
for file in *; do
+ [ ".$file" = ".*" ] && continue
mv ${file} `echo ${file} | sed -e 's;^\([^.]*\)\(\..*\)$;\1%{V_comp}\2;'`
done
) || exit $?
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]