Author: jfrederic.clere(a)jboss.com
Date: 2009-03-20 06:31:59 -0400 (Fri, 20 Mar 2009)
New Revision: 2378
Modified:
trunk/build/unix/buildbin.mod_cluster.sh
Log:
The package with the *.so files was empty on hpux.
Modified: trunk/build/unix/buildbin.mod_cluster.sh
===================================================================
--- trunk/build/unix/buildbin.mod_cluster.sh 2009-03-19 18:08:43 UTC (rev 2377)
+++ trunk/build/unix/buildbin.mod_cluster.sh 2009-03-20 10:31:59 UTC (rev 2378)
@@ -241,7 +241,15 @@
./configure --with-apxs=${BASELOC}/opt/jboss/httpd/sbin/apxs
make clean
make
- cp *.so ../../target
+ if [ "$BUILD_SYS" = "hpux" ]; then
+ for file in ls *.sl
+ do
+ nfile=`echo $file | sed 's:\.sl:\.so:'`
+ cp -p $file $nfile
+ done
+ else
+ cp *.so ../../target
+ fi
)
done
(cd ../mod_cluster/target
Show replies by date