mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-03 06:27:16 +08:00
Xorg Libraries: Fix some directories not being removed after compilation.
Notable dirs not getting deleted are libpciaccess-*/ and xtrans-*/.
This commit is contained in:
parent
3db057d457
commit
0baa68caf2
@ -42,6 +42,10 @@
|
|||||||
<listitem>
|
<listitem>
|
||||||
<para>August 3rd, 2024</para>
|
<para>August 3rd, 2024</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>[Zeckmathederg] - Xorg Libraries: Fix some directories not
|
||||||
|
being removed after compilation.</para>
|
||||||
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>[Zeckmathederg] - NVIDIA: Make necessary packages that follow
|
<para>[Zeckmathederg] - NVIDIA: Make necessary packages that follow
|
||||||
that need to be installed more clear.</para>
|
that need to be installed more clear.</para>
|
||||||
|
@ -185,7 +185,8 @@ do
|
|||||||
ninja
|
ninja
|
||||||
#ninja test
|
#ninja test
|
||||||
as_root ninja install
|
as_root ninja install
|
||||||
popd # $packagedir
|
popd # $packagedir
|
||||||
|
rm -rf $packagedir
|
||||||
continue # for loop
|
continue # for loop
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@ -238,7 +239,6 @@ do
|
|||||||
libpciaccess* )
|
libpciaccess* )
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
rm -rf * # ensure build directory is truly empty as it may not be
|
|
||||||
CC="gcc -m32" CXX="g++ -m32" PKG_CONFIG_PATH=$XORG_PREFIX/lib32/pkgconfig \
|
CC="gcc -m32" CXX="g++ -m32" PKG_CONFIG_PATH=$XORG_PREFIX/lib32/pkgconfig \
|
||||||
meson setup --prefix=$XORG_PREFIX $libdir --buildtype=release ..
|
meson setup --prefix=$XORG_PREFIX $libdir --buildtype=release ..
|
||||||
ninja
|
ninja
|
||||||
@ -248,6 +248,7 @@ do
|
|||||||
rm -rf DESTDIR
|
rm -rf DESTDIR
|
||||||
as_root /sbin/ldconfig
|
as_root /sbin/ldconfig
|
||||||
popd # $packagedir
|
popd # $packagedir
|
||||||
|
rm -rf $packagedir
|
||||||
continue # for loop
|
continue # for loop
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@ -259,6 +260,7 @@ do
|
|||||||
as_root cp -vr DESTDIR/$XORG_PREFIX/share/pkgconfig/* $XORG_PREFIX/lib32/pkgconfig
|
as_root cp -vr DESTDIR/$XORG_PREFIX/share/pkgconfig/* $XORG_PREFIX/lib32/pkgconfig
|
||||||
rm -rf DESTDIR
|
rm -rf DESTDIR
|
||||||
popd
|
popd
|
||||||
|
rm -rf $packagedir
|
||||||
continue
|
continue
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user