mirror of
https://github.com/systemd/systemd.git
synced 2024-11-04 22:21:55 +03:00
27 lines
631 B
Bash
Executable File
27 lines
631 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
gtkdocize
|
|
autoreconf --install --symlink
|
|
|
|
libdir() {
|
|
echo $(cd $1/$(gcc -print-multi-os-directory); pwd)
|
|
}
|
|
|
|
args="--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--bindir=/sbin \
|
|
--libdir=$(libdir /usr/lib) \
|
|
--with-rootlibdir=$(libdir /lib) \
|
|
--libexecdir=/lib/udev \
|
|
--with-systemdsystemunitdir=/lib/systemd/system \
|
|
--with-selinux \
|
|
--enable-gtk-doc"
|
|
|
|
echo
|
|
echo "---------------------------------------------------------------------"
|
|
echo "Initialized udev build system. For a common configuration please run:"
|
|
echo "---------------------------------------------------------------------"
|
|
echo
|
|
echo "# ./configure $args"
|
|
echo
|