Update of /cvsroot/fink/fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20750
Modified Files:
install.sh ChangeLog
Log Message:
Unified handling of ChangeLog files
Index: install.sh
===================================================================
RCS file: /cvsroot/fink/fink/install.sh,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- install.sh 23 Mar 2006 23:11:39 -0000 1.44
+++ install.sh 24 Mar 2006 15:55:50 -0000 1.45
@@ -88,10 +88,12 @@
install -c -p -m 644 $file "$basepath/share/doc/fink/"
done
-install -c -p -m 644 ChangeLog "$basepath/share/doc/fink/ChangeLog"
-install -c -p -m 644 perlmod/ChangeLog
"$basepath/share/doc/fink/ChangeLog.perlmod"
-install -c -p -m 644 perlmod/Fink/ChangeLog
"$basepath/share/doc/fink/ChangeLog.perlmod.Fink"
-install -c -p -m 644 update/ChangeLog
"$basepath/share/doc/fink/ChangeLog.update"
+# some/place/ChangeLog goes as ChangeLoge.some.place
+for cl_src in . perlmod perlmod/Fink update; do
+ cl_dst=`echo $cl_src | tr '/' '.' | sed -e 's/^\.*//'`
+ [ -n "$cl_dst" ] && cl_dst=".$cl_dst"
+ install -c -p -m644 $cl_src/ChangeLog
"$basepath/share/doc/fink/ChangeLog$cl_dst"
+done
for gccvers in 3.3 4.0; do
install -c -p -m 755 "g++-wrapper-$gccvers" \
Index: ChangeLog
===================================================================
RCS file: /cvsroot/fink/fink/ChangeLog,v
retrieving revision 1.412
retrieving revision 1.413
diff -u -d -r1.412 -r1.413
--- ChangeLog 23 Mar 2006 23:11:39 -0000 1.412
+++ ChangeLog 24 Mar 2006 15:55:51 -0000 1.413
@@ -1,3 +1,7 @@
+2006-03-24 Daniel Macks <[EMAIL PROTECTED]>
+
+ * install.sh: Unified handling of ChangeLog files
+
2006-03-23 Dave Vasilevsky <[EMAIL PROTECTED]>
* install.sh: Include perlmod/Fink/Finally in installation dirs.
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Fink-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fink-commits