(file) Return to buildincludes CVS log (file) (dir) Up to [Pegasus] / pegasus / rpm

 1 sage  1.1 #!/bin/bash
 2           #
 3           # Build include files
 4           #
 5           #PROOT=/home/markus/src/pegasus
 6           #BROOT=/home/markus/src/tmp
 7           PROOT=$1
 8           BROOT=$2
 9           
10           rm -f $BROOT/rpm_pegasus_include_files
11           pushd  $PROOT/src
12           list=`find Pegasus -iname '*.h'`
13           popd
14           for i in $list;do
15               j=`dirname $i`;
16               echo "/usr/include/"$i >> $BROOT/rpm_pegasus_include_files
17               mkdir -p $BROOT/usr/include/$j
18               cp $PROOT/src/$i $BROOT/usr/include/$i
19           done;

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2