Hi,

I have some problems with the standard tar of solaris because it doesn´t
support the -z option. /usr/bin/cd works doesn´t work too.

So here is a small script to fix Makefile.in

################################

#!/bin/sh
MAKEFILE_LIST=`find . -name Makefile.in -print`
for help in $MAKEFILE_LIST
do
 
echo "Fixing $help ...";
sed "s/@CD@/cd/g" $help > $help.bak
sed "s/@TAR@/\/usr\/local\/bin\/tar/g" $help.bak > $help
rm $help.bak
 
done

################################

Regards Michael

P.S. Massimiliano, did you check in the changes of 20010625 in the CVS?
-- 
----------------------------------------------------------------------------
Michael Bell                             Email: [EMAIL PROTECTED]
Rechenzentrum - Datacenter        Email (work):
[EMAIL PROTECTED]
Humboldt-University of Berlin       Tel.(work): +49 (0)30-2093 2482
Unter den Linden 6                  Fax.(work): +49 (0)30-2093 2959
10099 Berlin
Germany                                              [OpenCA Core
Developer]

http://openca.sourceforge.net

_______________________________________________
OpenCA-Devel mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/openca-devel

Reply via email to