diff options
Diffstat (limited to 'xorg/server/bootstrap')
| -rwxr-xr-x | xorg/server/bootstrap | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/xorg/server/bootstrap b/xorg/server/bootstrap deleted file mode 100755 index ec344d3d..00000000 --- a/xorg/server/bootstrap +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -which autoconf -if ! test $? -eq 0 -then - echo "error, install autoconf" - exit 1 -fi - -which automake -if ! test $? -eq 0 -then - echo "error, install automake" - exit 1 -fi - -which libtool -if ! test $? -eq 0 -then - echo "error, install libtool" - exit 1 -fi - -which pkg-config -if ! test $? -eq 0 -then - echo "error, install pkg-config" - exit 1 -fi - -touch configure.ac -touch NEWS -touch AUTHORS -touch README -touch ChangeLog -autoreconf -fvi |
