X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=autogen.sh;h=180e423c4d294ebe3f608a1b2dd69015985ad2e1;hp=683c498025b662bdad7fdbc92ce171ea73d5c9de;hb=c23d8fb18f018d737fdc22abe3c7ef599561d37f;hpb=dd8a93e0d8d4db1810e8d0bc438c19c97876b810 diff --git a/autogen.sh b/autogen.sh index 683c49802..180e423c4 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,12 +1,16 @@ -#!/usr/bin/env sh +#!/bin/sh -e -set -e +if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then + cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit && \ + chmod +x .git/hooks/pre-commit && \ + echo "Activated pre-commit hook." +fi gtkdocize autoreconf --install --symlink libdir() { - echo $(cd $1/$(gcc -print-multi-os-directory); pwd) + echo $(cd $1/$(gcc -print-multi-os-directory); pwd) } args="\ @@ -16,15 +20,15 @@ args="\ --bindir=/sbin \ --libdir=$(libdir /usr/lib) \ --with-rootlibdir=$(libdir /lib) \ ---libexecdir=/lib/udev \ +--libexecdir=/lib \ --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 "Initialized build system. For a common configuration please run:" +echo "----------------------------------------------------------------" echo -echo "# ./configure $args" +echo "./configure CFLAGS='-g -O1' $args" echo