Author: jfrederic.clere(a)jboss.com
Date: 2014-05-15 07:42:21 -0400 (Thu, 15 May 2014)
New Revision: 3296
Modified:
trunk/build/unix/buildbin.mod_cluster.sh
Log:
copy the .so and .sl file (only the .sl are renamed).
Modified: trunk/build/unix/buildbin.mod_cluster.sh
===================================================================
--- trunk/build/unix/buildbin.mod_cluster.sh 2014-05-15 11:29:07 UTC (rev 3295)
+++ trunk/build/unix/buildbin.mod_cluster.sh 2014-05-15 11:42:21 UTC (rev 3296)
@@ -414,17 +414,13 @@
./configure --with-apxs=${BASELOC}/opt/jboss/httpd/${apxs}
make clean
make
- if [ "$BUILD_SYS" = "hpux" ]; then
- for file in `ls *.sl`
- do
- nfile=`echo $file | sed 's:\.sl:\.so:'`
- cp -p $file ../../target/$nfile
- echo "Copying $file to
${RPM_BUILD_ROOT}/${BASEHTTPD}/lib/httpd/modules/$nfile"
- cp -p $file ${RPM_BUILD_ROOT}/${BASEHTTPD}/lib/httpd/modules/$nfile
- done
- else
- cp *.so ../../target
- fi
+ for file in `ls *.sl *.so`
+ do
+ nfile=`echo $file | sed 's:\.sl:\.so:'`
+ cp -p $file ../../target/$nfile
+ echo "Copying $file to
${RPM_BUILD_ROOT}/${BASEHTTPD}/lib/httpd/modules/$nfile"
+ cp -p $file ${RPM_BUILD_ROOT}/${BASEHTTPD}/lib/httpd/modules/$nfile
+ done
) || exit 1
done
(cd ../mod_cluster/target