comparison lib/fuse2/fuse2.sh @ 817:0e6c54d47dfb

vanilla: fix many FHS issues While here, remove libtool files in a generic manner to avoid stale files.
author David Demelier <markand@malikania.fr>
date Wed, 21 Aug 2019 09:04:13 +0200
parents 59a2fa6992bc
children ddab65a5b3f5
comparison
equal deleted inserted replaced
816:be3a5b2d9a09 817:0e6c54d47dfb
37 37
38 CC="$CC" \ 38 CC="$CC" \
39 CFLAGS="$CFLAGS" \ 39 CFLAGS="$CFLAGS" \
40 LDFLAGS="$LDFLAGS" \ 40 LDFLAGS="$LDFLAGS" \
41 LIBS="$LIBS" \ 41 LIBS="$LIBS" \
42 MOUNT_FUSE_PATH=/bin \
42 ./configure \ 43 ./configure \
43 --build=$CBUILD \ 44 --build=$CBUILD \
44 --host=$CHOST \ 45 --host=$CHOST \
45 --prefix= \ 46 --prefix= \
46 --enable-shared 47 --enable-shared
47 make 48 make
48 make install DESTDIR=$DESTDIR 49 make install DESTDIR=$DESTDIR
49 rm -f $DESTDIR/lib/libfuse.la 50 rm -rf $DESTDIR/etc/init.d
50 rm -f $DESTDIR/lib/libulockmgr.la 51 find $DESTDIR -type f -name "*.la" -delete
51 52
52 cd .. 53 cd ..
53 rm -rf fuse-$PKGVERSION 54 rm -rf fuse-$PKGVERSION
54 } 55 }