chiark / gitweb /
warn about deprecated RUN+="socket:" use
[elogind.git] / autogen.sh
index d32f41df9be0b1e1ed8fb43629abbdfcdf294c27..180e423c4d294ebe3f608a1b2dd69015985ad2e1 100755 (executable)
@@ -1,18 +1,16 @@
-#!/bin/sh
-
-set -e
+#!/bin/sh -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."
+        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="\
@@ -32,5 +30,5 @@ echo "----------------------------------------------------------------"
 echo "Initialized build system. For a common configuration please run:"
 echo "----------------------------------------------------------------"
 echo
-echo "./configure CFLAGS='-g -O0' $args"
+echo "./configure CFLAGS='-g -O1' $args"
 echo