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

File: [Pegasus] / pegasus / rpm / Attic / buildincludes (download)
Revision: 1.5, Fri Aug 6 19:10:51 2004 UTC (19 years, 9 months ago) by konrad.r
Branch: MAIN
CVS Tags: TASK-PEP362_RestfulService-merged_out_from_trunk, TASK-PEP348_SCMO-merged_out_from_trunk, TASK-PEP317_pullop-merged_out_from_trunk, TASK-PEP317_pullop-merged_in_to_trunk, TASK-PEP311_WSMan-root, TASK-PEP311_WSMan-branch, RELEASE_2_5_0-RC1, HPUX_TEST, HEAD
Changes since 1.4: +0 -0 lines
FILE REMOVED
BUG#: 1629
TITLE: pegasus/rpm directory has old-unused tools.

DESCRIPTION:

#!/bin/bash
#
# Build include files
#
#PROOT=/home/markus/src/pegasus
#BROOT=/home/markus/src/tmp
PROOT=$1
BROOT=$2
#LISTLOC=$3
LISTLOC=/usr/src/packages/BUILD/pegasus-1.0

echo "Copy include files from "$PROOT" into "$BROOT" - list in "$LISTLOC

rm -f $LISTLOC/rpm_pegasus_include_files
pushd  $PROOT/src
list=`find Pegasus -iname '*.h'`
popd
for i in $list;do
    j=`dirname $i`;
    echo "/usr/include/"$i >> $LISTLOC/rpm_pegasus_include_files
    mkdir -p $BROOT/usr/include/$j
    cp $PROOT/src/$i $BROOT/usr/include/$i
done;

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2