blob: 1b4ca8b60017991b574d9f3f069959a9f484c7ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# util-linux
## config.h
Generated with
./configure \
--disable-all-programs \
--enable-fs-paths-default=/bin \
--enable-fsck \
--enable-libblkid \
--enable-libmount \
--enable-libuuid
`HAVE_LIBBLKID` and `HAVE_LIBMOUNT` were undefined because although configure
requires that we enable them, they aren't actually needed to build fdisk.
`_PATH_RUNSTATEDIR` and `LOCALEDIR` are defined in a separate top section. They
are normally defined with flags in `Makefile.am`.
|