summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2005-10-26 22:40:59 +0000
committerMarcel Holtmann <marcel@holtmann.org>2005-10-26 22:40:59 +0000
commit5b06ecd76bbb760cdee2e7b9e36cc3202db2e5db (patch)
tree59361d5f175cf5e9209e27295d69cab57ab00528
parentfdf8c10513c0f4d3eab0dc0c75c878825f35f979 (diff)
Update bootstrap stuff
-rwxr-xr-xbootstrap9
-rwxr-xr-xbootstrap-configure13
-rwxr-xr-xcompile7
3 files changed, 20 insertions, 9 deletions
diff --git a/bootstrap b/bootstrap
index 199053bb..c838d5e2 100755
--- a/bootstrap
+++ b/bootstrap
@@ -1,2 +1,7 @@
-#! /bin/sh
-aclocal && autoheader && libtoolize --copy --force && automake --add-missing --copy --ignore-deps && autoconf
+#!/bin/sh
+
+aclocal && \
+ autoheader && \
+ libtoolize --copy --force && \
+ automake --add-missing --copy && \
+ autoconf
diff --git a/bootstrap-configure b/bootstrap-configure
new file mode 100755
index 00000000..76e6fce3
--- /dev/null
+++ b/bootstrap-configure
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+./bootstrap && \
+ ./configure --enable-maintainer-mode \
+ --enable-debug \
+ --prefix=/usr \
+ --mandir=/usr/share/man \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --enable-all \
+ --disable-pcmcia \
+ --disable-initscripts \
+ --disable-bluepin
diff --git a/compile b/compile
deleted file mode 100755
index 28d79b54..00000000
--- a/compile
+++ /dev/null
@@ -1,7 +0,0 @@
-#! /bin/sh
-./configure --enable-maintainer-mode --enable-all --disable-pcmcia --disable-initscripts --disable-bluepin && make && \
- sudo cp hcid/hcid /usr/sbin && \
- sudo cp sdpd/sdpd /usr/sbin && \
- sudo cp tools/hciconfig /usr/sbin && \
- sudo cp tools/hcitool /usr/bin && \
- sudo cp tools/sdptool /usr/bin