summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore26
l---------INSTALL1
-rw-r--r--autogen.sh11
3 files changed, 36 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..08d92af
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,26 @@
+.deps
+.libs
+.*project
+*~
+*.a
+*.bak
+*.lo
+*.la
+*.o
+*.orig
+autom4te.cache
+aclocal.m4
+config.h
+config.h.in
+config.log
+config.status
+configure
+depcomp
+install-sh
+INSTALL
+Makefile
+Makefile.in
+missing
+stamp-*
+
+/src/p11-tests
diff --git a/INSTALL b/INSTALL
deleted file mode 120000
index 5bb6e7b..0000000
--- a/INSTALL
+++ /dev/null
@@ -1 +0,0 @@
-/usr/share/automake-1.10/INSTALL \ No newline at end of file
diff --git a/autogen.sh b/autogen.sh
index 3f90c13..82adbf2 100644
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,6 +1,15 @@
-#!/bin/sh
+#!/bin/sh -e
set -e
+
+# Some boiler plate to get git setup as expected
+if test -d .git; then
+ if test -f .git/hooks/pre-commit.sample && \
+ test ! -f .git/hooks/pre-commit; then
+ cp -pv .git/hooks/pre-commit.sample .git/hooks/pre-commit
+ fi
+fi
+
set -x
aclocal