X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=autogen.sh;h=180e423c4d294ebe3f608a1b2dd69015985ad2e1;hp=fdbff66c48b9e675cfe9ff646e22273be223c7c1;hb=dc401e018940ccd94b9648eeab25f5ae204e5b30;hpb=1495719024cae87fd42167ec77691ebb64ba20d7 diff --git a/autogen.sh b/autogen.sh index fdbff66c4..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="\ @@ -22,9 +26,9 @@ args="\ --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