mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
Remove the notion of "sys*"
- This idea originates from very early in the project and was, at the
time, a very easy way to categorise things.
- Now, it doesn't really make much sense - it is fairly arbitary, often
occuring when there is a change in kernel, but not from builder-hex0
to fiwix, and sysb is in reality completely unnecessary.
- In short, the sys* stuff is a bit of a mess that makes the project
more difficult to understand.
- This puts everything down into one folder and has a manifest file that
is used to generate the build scripts on the fly rather than using
coded scripts.
- This is created in the "seed" stage.
stage0-posix -- (calls) --> seed -- (generates) --> main steps
Alongside this change there are a variety of other smaller fixups to the
general structure of the live-bootstrap rootfs.
- Creating a rootfs has become much simpler and is defined as code in
go.sh. The new structure, for an about-to-be booted system, is
/
-- /steps (direct copy of steps/)
-- /distfiles (direct copy of distfiles/)
-- all files from seed/*
-- all files from seed/stage0-posix/*
- There is no longer such a thing as /usr/include/musl, this didn't
really make any sense, as musl is the final libc used. Rather, to
separate musl and mes, we have /usr/include/mes, which is much easier
to work with.
- This also makes mes easier to blow away later.
- A few things that weren't properly in packages have been changed;
checksum-transcriber, simple-patch, kexec-fiwix have all been given
fully qualified package names.
- Highly breaking change, scripts now exist in their package directory
but NOT WITH THE packagename.sh. Rather, they use pass1.sh, pass2.sh,
etc. This avoids manual definition of passes.
- Ditto with patches; default directory is patches, but then any patch
series specific to a pass are named patches-passX.
This commit is contained in:
parent
0907cfd073
commit
6ed2e09f3a
546 changed files with 700 additions and 1299 deletions
33
steps/util-linux-2.19.1/pass1.sh
Executable file
33
steps/util-linux-2.19.1/pass1.sh
Executable file
|
|
@ -0,0 +1,33 @@
|
|||
# SPDX-FileCopyrightText: 2021-23 fosslinux <fosslinux@aussies.space>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# We don't have gettext (autopoint) yet.
|
||||
AUTOPOINT=true AUTOMAKE=automake-1.10 ACLOCAL=aclocal-1.10 AUTOM4TE=autom4te-2.64 autoreconf-2.64 -fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
./configure --prefix="${PREFIX}" \
|
||||
--bindir="${PREFIX}/bin" \
|
||||
--sbindir="${PREFIX}/bin" \
|
||||
--libdir="${LIBDIR}" \
|
||||
--build=i386-unknown-linux-gnu \
|
||||
--disable-cramfs \
|
||||
--without-ncurses \
|
||||
--enable-static \
|
||||
--enable-static-programs=losetup,mount,umount,fdisk,sfdisk,blkid \
|
||||
--enable-shared=no \
|
||||
--disable-wall \
|
||||
ac_cv_type_loff_t=yes
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
# A weird behaviour I can't find the source of
|
||||
mv "${DESTDIR}${PREFIX}/i386-unknown-linux-musl/"* "${DESTDIR}${LIBDIR}/"
|
||||
rmdir "${DESTDIR}${PREFIX}/i386-unknown-linux-musl/"
|
||||
}
|
||||
81
steps/util-linux-2.19.1/patches/broken-programs.patch
Normal file
81
steps/util-linux-2.19.1/patches/broken-programs.patch
Normal file
|
|
@ -0,0 +1,81 @@
|
|||
SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
We disable the following programs for the following reasons:
|
||||
|
||||
* script: doesn't build with musl.
|
||||
* flock: GCC doesn't like some directive.
|
||||
* fstrim: ??? doesn't build (missing/bad linux header?)
|
||||
* fsfreeze: ditto.
|
||||
* hexdump: musl incompatibility.
|
||||
* column: musl incompatibility.
|
||||
|
||||
diff --color -ru misc-utils/Makefile.am misc-utils/Makefile.am
|
||||
--- misc-utils/Makefile.am 2021-06-13 09:34:49.669370352 +1000
|
||||
+++ misc-utils/Makefile.am 2021-06-13 09:42:06.644523490 +1000
|
||||
@@ -6,8 +6,8 @@
|
||||
sbin_PROGRAMS =
|
||||
usrsbin_exec_PROGRAMS =
|
||||
|
||||
-usrbin_exec_PROGRAMS = cal ddate logger look mcookie \
|
||||
- namei script whereis scriptreplay
|
||||
+usrbin_exec_PROGRAMS = cal ddate look mcookie \
|
||||
+ namei whereis scriptreplay
|
||||
EXTRA_DIST += README.cal README.ddate README.namei README.namei2
|
||||
|
||||
mcookie_SOURCES = mcookie.c $(top_srcdir)/lib/md5.c
|
||||
@@ -50,18 +50,6 @@
|
||||
wipefs_LDADD = $(ul_libblkid_la)
|
||||
wipefs_CFLAGS = $(AM_CFLAGS) -I$(ul_libblkid_incdir)
|
||||
|
||||
-if BUILD_LSBLK
|
||||
-bin_PROGRAMS += lsblk
|
||||
-dist_man_MANS += lsblk.8
|
||||
-lsblk_SOURCES = lsblk.c \
|
||||
- $(top_srcdir)/lib/canonicalize.c \
|
||||
- $(top_srcdir)/lib/ismounted.c \
|
||||
- $(top_srcdir)/lib/tt.c \
|
||||
- $(top_srcdir)/lib/strutils.c
|
||||
-lsblk_LDADD = $(ul_libblkid_la)
|
||||
-lsblk_CFLAGS = $(AM_CFLAGS) -I$(ul_libblkid_incdir)
|
||||
-endif
|
||||
-
|
||||
if HAVE_STATIC_BLKID
|
||||
sbin_PROGRAMS += blkid.static
|
||||
blkid_static_SOURCES = $(blkid_SOURCES)
|
||||
diff --color -ru sys-utils/Makefile.am sys-utils/Makefile.am
|
||||
--- sys-utils/Makefile.am 2021-06-13 09:34:49.686370532 +1000
|
||||
+++ sys-utils/Makefile.am 2021-06-13 09:42:06.644523490 +1000
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
bin_PROGRAMS =
|
||||
sbin_PROGRAMS =
|
||||
-usrbin_exec_PROGRAMS = flock ipcrm ipcs ipcmk renice setsid
|
||||
+usrbin_exec_PROGRAMS = ipcrm ipcs ipcmk renice setsid
|
||||
usrsbin_exec_PROGRAMS = readprofile
|
||||
|
||||
dist_man_MANS = flock.1 ipcrm.1 ipcs.1 ipcmk.1 renice.1 setsid.1 \
|
||||
@@ -10,8 +10,8 @@
|
||||
|
||||
if LINUX
|
||||
bin_PROGRAMS += dmesg
|
||||
-sbin_PROGRAMS += ctrlaltdel fsfreeze fstrim
|
||||
-usrbin_exec_PROGRAMS += cytune setarch
|
||||
+sbin_PROGRAMS += ctrlaltdel fsfreeze
|
||||
+usrbin_exec_PROGRAMS += cytune
|
||||
usrsbin_exec_PROGRAMS += ldattach tunelp rtcwake
|
||||
|
||||
dist_man_MANS += dmesg.1 ctrlaltdel.8 cytune.8 setarch.8 \
|
||||
diff --color -ru text-utils/Makefile.am text-utils/Makefile.am
|
||||
--- text-utils/Makefile.am 2021-06-13 09:34:49.696370638 +1000
|
||||
+++ text-utils/Makefile.am 2021-06-13 09:46:19.230591066 +1000
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
EXTRA_DIST = README.clear README.col
|
||||
|
||||
-usrbin_exec_PROGRAMS = col colcrt colrm column hexdump rev line tailf
|
||||
+usrbin_exec_PROGRAMS = col colcrt colrm rev line tailf
|
||||
|
||||
hexdump_SOURCES = hexdump.c conv.c display.c hexsyntax.c parse.c \
|
||||
hexdump.h
|
||||
19
steps/util-linux-2.19.1/patches/disable-tests.patch
Normal file
19
steps/util-linux-2.19.1/patches/disable-tests.patch
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
The tests/ subfolder is broken and useless unless we run `make test' which we
|
||||
don't.
|
||||
|
||||
--- Makefile.am 2021-06-13 09:50:21.775597435 +1000
|
||||
+++ Makefile.am 2021-06-13 09:50:10.900501284 +1000
|
||||
@@ -29,8 +29,7 @@
|
||||
po \
|
||||
schedutils \
|
||||
sys-utils \
|
||||
- text-utils \
|
||||
- tests
|
||||
+ text-utils
|
||||
|
||||
|
||||
RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o \
|
||||
26
steps/util-linux-2.19.1/patches/headers-bsd.patch
Normal file
26
steps/util-linux-2.19.1/patches/headers-bsd.patch
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
|
||||
|
||||
SPDX-License-Identifier: BSD-4-Clause
|
||||
|
||||
headers.patch but for files licensed BSD.
|
||||
|
||||
--- fdisk/fdiskbsdlabel.c 2021-06-12 16:09:49.519140837 +1000
|
||||
+++ fdisk/fdiskbsdlabel.c 2021-06-12 16:10:00.875220602 +1000
|
||||
@@ -53,6 +53,7 @@
|
||||
#include "nls.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
+#include <sys/types.h>
|
||||
|
||||
#include "common.h"
|
||||
#include "fdisk.h"
|
||||
--- login-utils/ttymsg.c 2021-06-12 16:11:45.911958381 +1000
|
||||
+++ login-utils/ttymsg.c 2021-06-12 19:09:30.108310127 +1000
|
||||
@@ -51,6 +51,7 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
+#include <sys/param.h>
|
||||
#include "nls.h"
|
||||
|
||||
#include "pathnames.h"
|
||||
26
steps/util-linux-2.19.1/patches/headers-gpl2.patch
Normal file
26
steps/util-linux-2.19.1/patches/headers-gpl2.patch
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
headers.patch but for files licensed GPL 2.0 or later.
|
||||
|
||||
--- misc-utils/findmnt.c 2021-06-12 19:13:40.306009682 +1000
|
||||
+++ misc-utils/findmnt.c 2021-06-12 19:13:58.223132046 +1000
|
||||
@@ -30,6 +30,7 @@
|
||||
#include <sys/ioctl.h>
|
||||
#endif
|
||||
#include <assert.h>
|
||||
+#include <sys/sysmacros.h>
|
||||
|
||||
#define USE_UNSTABLE_LIBMOUNT_API
|
||||
#include <libmount.h>
|
||||
--- fsck/fsck.c 2021-06-22 18:30:27.843680552 +1000
|
||||
+++ fsck/fsck.c 2021-06-22 18:30:41.327764247 +1000
|
||||
@@ -32,6 +32,7 @@
|
||||
#include <sys/signal.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/file.h>
|
||||
+#include <sys/sysmacros.h>
|
||||
#include <fcntl.h>
|
||||
#include <limits.h>
|
||||
#include <stdio.h>
|
||||
121
steps/util-linux-2.19.1/patches/headers.patch
Normal file
121
steps/util-linux-2.19.1/patches/headers.patch
Normal file
|
|
@ -0,0 +1,121 @@
|
|||
SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
|
||||
|
||||
SPDX-License-Identifier: LGPL-2.0-or-later
|
||||
|
||||
Musl utilizes the (correct) sys/sysmacros.h for major/minor macros. However,
|
||||
older glibc used to not do this. Hence this older util-linux assumes that
|
||||
behaviour which is wrong. So we need to patch in this include.
|
||||
|
||||
Some function was moved to sys/param.h at a later date so we include that for
|
||||
ttymsg.
|
||||
|
||||
(This is the main patch file. See -bsd.patch for files with such licensing).
|
||||
|
||||
diff --color -ru shlibs/blkid/src/devname.c shlibs/blkid/src/devname.c
|
||||
--- shlibs/blkid/src/devname.c 2021-06-12 14:24:30.982387640 +1000
|
||||
+++ shlibs/blkid/src/devname.c 2021-06-12 14:25:42.934921608 +1000
|
||||
@@ -33,6 +33,7 @@
|
||||
#include <errno.h>
|
||||
#endif
|
||||
#include <time.h>
|
||||
+#include <sys/sysmacros.h>
|
||||
|
||||
#include "blkidP.h"
|
||||
|
||||
diff --color -ru shlibs/blkid/src/devno.c shlibs/blkid/src/devno.c
|
||||
--- shlibs/blkid/src/devno.c 2021-06-12 14:24:30.987387677 +1000
|
||||
+++ shlibs/blkid/src/devno.c 2021-06-12 14:25:27.750808925 +1000
|
||||
@@ -31,6 +31,7 @@
|
||||
#endif
|
||||
#include <fcntl.h>
|
||||
#include <inttypes.h>
|
||||
+#include <sys/sysmacros.h>
|
||||
|
||||
#include "blkidP.h"
|
||||
#include "pathnames.h"
|
||||
diff --color -ru shlibs/blkid/src/partitions/partitions.c shlibs/blkid/src/partitions/partitions.c
|
||||
--- shlibs/blkid/src/partitions/partitions.c 2021-06-12 14:24:30.983387647 +1000
|
||||
+++ shlibs/blkid/src/partitions/partitions.c 2021-06-12 14:25:24.326783515 +1000
|
||||
@@ -19,6 +19,7 @@
|
||||
#include <stdint.h>
|
||||
#include <inttypes.h>
|
||||
#include <stdarg.h>
|
||||
+#include <sys/sysmacros.h>
|
||||
|
||||
#include "partitions.h"
|
||||
|
||||
diff --color -ru shlibs/blkid/src/topology/evms.c shlibs/blkid/src/topology/evms.c
|
||||
--- shlibs/blkid/src/topology/evms.c 2021-06-12 14:24:30.984387655 +1000
|
||||
+++ shlibs/blkid/src/topology/evms.c 2021-06-12 14:25:30.390828517 +1000
|
||||
@@ -19,6 +19,7 @@
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
+#include <sys/sysmacros.h>
|
||||
|
||||
#include "topology.h"
|
||||
|
||||
diff --color -ru shlibs/blkid/src/topology/lvm.c shlibs/blkid/src/topology/lvm.c
|
||||
--- shlibs/blkid/src/topology/lvm.c 2021-06-12 14:24:30.984387655 +1000
|
||||
+++ shlibs/blkid/src/topology/lvm.c 2021-06-12 14:25:37.510881355 +1000
|
||||
@@ -18,6 +18,7 @@
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
+#include <sys/sysmacros.h>
|
||||
|
||||
#include "topology.h"
|
||||
|
||||
diff --color -ru shlibs/blkid/src/topology/md.c shlibs/blkid/src/topology/md.c
|
||||
--- shlibs/blkid/src/topology/md.c 2021-06-12 14:24:30.984387655 +1000
|
||||
+++ shlibs/blkid/src/topology/md.c 2021-06-12 14:25:34.679860346 +1000
|
||||
@@ -19,6 +19,7 @@
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
+#include <sys/sysmacros.h>
|
||||
|
||||
#include "topology.h"
|
||||
|
||||
--- shlibs/blkid/src/topology/dm.c 2021-06-12 14:29:01.195392922 +1000
|
||||
+++ shlibs/blkid/src/topology/dm.c 2021-06-12 14:29:05.897427816 +1000
|
||||
@@ -18,6 +18,7 @@
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
+#include <sys/sysmacros.h>
|
||||
|
||||
#include "topology.h"
|
||||
|
||||
diff --color -ru shlibs/blkid/src/evaluate.c shlibs/blkid/src/evaluate.c
|
||||
--- shlibs/blkid/src/evaluate.c 2021-06-12 16:11:45.893958255 +1000
|
||||
+++ shlibs/blkid/src/evaluate.c 2021-06-12 16:12:20.652202397 +1000
|
||||
@@ -21,6 +21,7 @@
|
||||
#endif
|
||||
#include <stdint.h>
|
||||
#include <stdarg.h>
|
||||
+#include <sys/sysmacros.h>
|
||||
|
||||
#include "pathnames.h"
|
||||
#include "canonicalize.h"
|
||||
diff --color -ru shlibs/mount/src/fs.c shlibs/mount/src/fs.c
|
||||
--- shlibs/mount/src/fs.c 2021-06-12 16:11:45.897958283 +1000
|
||||
+++ shlibs/mount/src/fs.c 2021-06-12 16:12:14.812161377 +1000
|
||||
@@ -18,6 +18,7 @@
|
||||
#include <errno.h>
|
||||
#include <blkid.h>
|
||||
#include <stddef.h>
|
||||
+#include <sys/sysmacros.h>
|
||||
|
||||
#include "nls.h"
|
||||
#include "mountP.h"
|
||||
--- shlibs/mount/src/tab_parse.c 2021-06-12 19:04:38.773393353 +1000
|
||||
+++ shlibs/mount/src/tab_parse.c 2021-06-12 19:04:51.115474555 +1000
|
||||
@@ -14,6 +14,7 @@
|
||||
#include <dirent.h>
|
||||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
+#include <sys/sysmacros.h>
|
||||
|
||||
#include "nls.h"
|
||||
#include "at.h"
|
||||
109
steps/util-linux-2.19.1/patches/pkg-config.patch
Normal file
109
steps/util-linux-2.19.1/patches/pkg-config.patch
Normal file
|
|
@ -0,0 +1,109 @@
|
|||
SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
We don't have pkg-config, hence:
|
||||
a) disable gtk-doc (uses pkg-config exclusively)
|
||||
b) disable pkg-config type checks
|
||||
|
||||
--- configure.ac 2021-06-12 11:23:41.719074631 +1000
|
||||
+++ configure.ac 2021-06-12 11:26:17.748153926 +1000
|
||||
@@ -84,9 +84,6 @@
|
||||
dnl libtool-2
|
||||
LT_INIT
|
||||
|
||||
-PKG_PROG_PKG_CONFIG
|
||||
-
|
||||
-GTK_DOC_CHECK([1.10])
|
||||
AC_PATH_PROG([XSLTPROC], [xsltproc])
|
||||
|
||||
linux_os=no
|
||||
@@ -360,17 +360,8 @@
|
||||
have_uuid=yes
|
||||
|
||||
if test "x$enable_libuuid" = xno; then
|
||||
- # Check for external (e2fsprogs) libuuid
|
||||
- PKG_CHECK_MODULES(UUID, uuid, [have_uuid=yes], [have_uuid=no])
|
||||
- if test "x$have_uuid" = xno; then
|
||||
- # system without pkg-config or so, try classic check
|
||||
- AC_CHECK_LIB(uuid, uuid_is_null, [have_uuid=yes], [have_uuid=no])
|
||||
- fi
|
||||
- if test "x$have_uuid" = xyes; then
|
||||
- UTIL_SET_FLAGS($UUID_CFLAGS, $UUID_CFLAGS, $UUID_LIBS)
|
||||
- AC_CHECK_HEADERS([uuid.h uuid/uuid.h], [break], [])
|
||||
- UTIL_RESTORE_FLAGS
|
||||
- fi
|
||||
+ # system without pkg-config or so, try classic check
|
||||
+ AC_CHECK_LIB(uuid, uuid_is_null, [have_uuid=yes], [have_uuid=no])
|
||||
else
|
||||
# internal library
|
||||
AC_DEFINE(HAVE_UUID_H, 1, [Define to 1 if you have the <uuid.h> header file.])
|
||||
@@ -408,21 +408,8 @@
|
||||
|
||||
if test "x$enable_libblkid" = xno; then
|
||||
if test "x$build_mount" = xyes || test "x$enable_fsck" = xyes; then
|
||||
- # Check for external (e2fsprogs) libblkid
|
||||
- PKG_CHECK_MODULES(BLKID, blkid, [have_blkid=yes], [have_blkid=no])
|
||||
- if test "x$have_blkid" = xno; then
|
||||
- # system without pkg-config or so, try classic check
|
||||
- AC_CHECK_LIB(blkid, blkid_get_cache, [have_blkid=yes], [have_blkid=no])
|
||||
- fi
|
||||
- if test "x$have_blkid" = xyes; then
|
||||
- UTIL_SET_FLAGS($BLKID_CFLAGS, $BLKID_CFLAGS, $BLKID_LIBS)
|
||||
- AC_CHECK_HEADERS([blkid.h blkid/blkid.h], [break], [])
|
||||
- UTIL_RESTORE_FLAGS
|
||||
- fi
|
||||
- if test -n "$enable_static_programs"; then
|
||||
- # TODO check only when mount of fsck are requested
|
||||
- UTIL_PKG_STATIC([BLKID_LIBS_STATIC], [blkid])
|
||||
- fi
|
||||
+ # system without pkg-config or so, try classic check
|
||||
+ AC_CHECK_LIB(blkid, blkid_get_cache, [have_blkid=yes], [have_blkid=no])
|
||||
fi
|
||||
else
|
||||
# internal library
|
||||
@@ -1251,8 +1251,6 @@
|
||||
schedutils/Makefile
|
||||
shlibs/blkid/blkid.pc
|
||||
shlibs/blkid/Makefile
|
||||
-shlibs/blkid/docs/Makefile
|
||||
-shlibs/blkid/docs/version.xml
|
||||
shlibs/blkid/src/Makefile
|
||||
shlibs/blkid/src/blkid.h
|
||||
shlibs/blkid/src/superblocks/Makefile
|
||||
@@ -1263,8 +1261,6 @@
|
||||
shlibs/mount/Makefile
|
||||
shlibs/mount/src/Makefile
|
||||
shlibs/mount/src/libmount.h
|
||||
-shlibs/mount/docs/Makefile
|
||||
-shlibs/mount/docs/version.xml
|
||||
shlibs/mount/samples/Makefile
|
||||
shlibs/uuid/uuid.pc
|
||||
shlibs/uuid/Makefile
|
||||
--- shlibs/mount/Makefile.am.bak 2021-06-12 11:32:07.578612839 +1000
|
||||
+++ shlibs/mount/Makefile.am 2021-06-12 11:32:20.247701887 +1000
|
||||
@@ -2,11 +2,6 @@
|
||||
|
||||
SUBDIRS = src samples
|
||||
|
||||
-if ENABLE_GTK_DOC
|
||||
-SUBDIRS += docs
|
||||
-endif
|
||||
-
|
||||
-# pkg-config stuff
|
||||
pkgconfigdir = $(usrlib_execdir)/pkgconfig
|
||||
pkgconfig_DATA = mount.pc
|
||||
|
||||
--- shlibs/blkid/Makefile.am.bak 2021-06-12 11:32:03.546584499 +1000
|
||||
+++ shlibs/blkid/Makefile.am 2021-06-12 11:32:10.790635416 +1000
|
||||
@@ -2,10 +2,6 @@
|
||||
|
||||
SUBDIRS = src samples
|
||||
|
||||
-if ENABLE_GTK_DOC
|
||||
-SUBDIRS += docs
|
||||
-endif
|
||||
-
|
||||
# pkg-config stuff
|
||||
pkgconfigdir = $(usrlib_execdir)/pkgconfig
|
||||
pkgconfig_DATA = blkid.pc
|
||||
1
steps/util-linux-2.19.1/sources
Normal file
1
steps/util-linux-2.19.1/sources
Normal file
|
|
@ -0,0 +1 @@
|
|||
https://mirrors.kernel.org/pub/linux/utils/util-linux/v2.19/util-linux-2.19.1.tar.gz f694bee56099b8d72c3843d97e27f2306aa9946741e34a27391f6f6f19c7bcd0
|
||||
Loading…
Add table
Add a link
Reference in a new issue