|
From: Serge L. <sma...@us...> - 2010-02-28 19:57:03
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv8359 Modified Files: LVM2 Log Message: - userspace code of Device-mapper (dmsetup and libdevmapper) is now maintained alongside the LVM2 source Index: LVM2 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/LVM2,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- LVM2 6 Jan 2010 14:53:27 -0000 1.10 +++ LVM2 28 Feb 2010 19:56:53 -0000 1.11 @@ -19,25 +19,14 @@ case $1 in build ) if [ "$CONFIG_LVM2" = "y" ]; then - pushd `pwd` - cd ../device-mapper* - ./configure - make $PMAKE || exit 1 - make install || exit 1 - popd - ./configure --exec-prefix= || exit 1 make $PMAKE all || exit 1 + make install_device-mapper || exit 1 strip_debug fi ;; install ) if [ "$CONFIG_LVM2" = "y" ]; then - rm -rf $TMPDIR || exit 1 - pushd `pwd` - cd ../device-mapper* - make install DESTDIR=$TMPDIR || exit 1 - popd make install DESTDIR=$TMPDIR || exit 1 copy_docs $TMPDIR rm -rf $TMPDIR/usr || exit 1 |