diff options
author | Laurent Montel <lmontel@mandriva.org> | 2003-03-07 09:27:31 +0000 |
---|---|---|
committer | Laurent Montel <lmontel@mandriva.org> | 2003-03-07 09:27:31 +0000 |
commit | d499fbc684ff361312811dbdae5ba6a59a246150 (patch) | |
tree | d16a4bed14ef385848b513482deb9204dd38e0ef | |
parent | 401ca2b14494d70909a66f579c8fbdde6d9a8910 (diff) | |
download | indexhtml-d499fbc684ff361312811dbdae5ba6a59a246150.tar indexhtml-d499fbc684ff361312811dbdae5ba6a59a246150.tar.gz indexhtml-d499fbc684ff361312811dbdae5ba6a59a246150.tar.bz2 indexhtml-d499fbc684ff361312811dbdae5ba6a59a246150.tar.xz indexhtml-d499fbc684ff361312811dbdae5ba6a59a246150.zip |
Fix index html location page
-rw-r--r-- | indexhtml.spec | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/indexhtml.spec b/indexhtml.spec index 5d53e34..aa352d3 100644 --- a/indexhtml.spec +++ b/indexhtml.spec @@ -1,7 +1,7 @@ Summary: Mandrake html welcome page Name: indexhtml Version: 9.1 -Release: 4mdk +Release: 5mdk Source: indexhtml-%version.tar.bz2 Group: System/Base License: GPL @@ -57,13 +57,13 @@ for i in $LISTLANG do if [ -r %_datadir/mdk/indexhtml/index-$i.html ]; then cat %_datadir/mdk/indexhtml/index-$i.html > \ - %_datadir/mdk/indexhtml/index.html + %_datadir/doc/HTML/index.html break else lang=`echo $i | cut -b-2` if [ -r %_datadir/mdk/indexhtml/index-$lang.html ]; then cat %_datadir/mdk/indexhtml/index-$lang.html > \ - %_datadir/mdk/indexhtml/index.html + %_datadir/doc/HTML/index.html break; fi @@ -72,7 +72,7 @@ done if [ ! -r %_datadir/mdk/indexhtml/index.html ]; then cat %_datadir/mdk/indexhtml/index-en.html > \ - %_datadir/mdk/indexhtml/index.html + %_datadir/doc/HTML/index.html fi @@ -81,7 +81,7 @@ rm -f %{_defaultdocdir}/HTML/index.html %preun if [ $1 = 0 ]; then - rm -f %_datadir/mdk/indexhtml/index.html + rm -f %_datadir/doc/HTML/index.html fi @@ -94,6 +94,9 @@ fi %changelog +* Fri Mar 07 2003 Laurent MONTEL <lmontel@mandrakesoft.com> 9.1-5mdk +- Fix indexhtml page location + * Thu Mar 06 2003 Laurent MONTEL <lmontel@mandrakesoft.com> 9.1-4mdk - fix generation of the html file - cleanup before removal |