]> git.0d.be Git - jack_mixer.git/commitdiff
Renamed bootstrap to autogen.sh to match what is being done in other projects
authorFrédéric Péters <fpeters@0d.be>
Mon, 14 Dec 2009 13:45:09 +0000 (14:45 +0100)
committerFrédéric Péters <fpeters@0d.be>
Mon, 14 Dec 2009 13:45:09 +0000 (14:45 +0100)
autogen.sh [new file with mode: 0755]
bootstrap [deleted file]

diff --git a/autogen.sh b/autogen.sh
new file mode 100755 (executable)
index 0000000..24ba5c7
--- /dev/null
@@ -0,0 +1,37 @@
+#!/bin/sh
+#
+# autotools bootstrap script for jack_mixer
+#
+# This file is part of jack_mixer
+#
+# Copyright (C) 2007 Nedko Arnaudov <nedko@arnaudov.name>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; version 2 of the License
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+#
+
+if test x$1 = xclean
+then
+  GENERATED="aclocal.m4 autom4te.cache config.h.in configure config Makefile.in"
+  set -x
+  if test -f Makefile; then make distclean; fi
+  rm -rf ${GENERATED}
+else
+  set -x
+  mkdir -p config
+  aclocal -I config -I m4 $ACLOCAL_FLAGS
+  libtoolize --copy --force
+  autoheader
+  automake --foreign --add-missing --copy
+  autoconf
+fi
diff --git a/bootstrap b/bootstrap
deleted file mode 100755 (executable)
index 24ba5c7..0000000
--- a/bootstrap
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-#
-# autotools bootstrap script for jack_mixer
-#
-# This file is part of jack_mixer
-#
-# Copyright (C) 2007 Nedko Arnaudov <nedko@arnaudov.name>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-
-if test x$1 = xclean
-then
-  GENERATED="aclocal.m4 autom4te.cache config.h.in configure config Makefile.in"
-  set -x
-  if test -f Makefile; then make distclean; fi
-  rm -rf ${GENERATED}
-else
-  set -x
-  mkdir -p config
-  aclocal -I config -I m4 $ACLOCAL_FLAGS
-  libtoolize --copy --force
-  autoheader
-  automake --foreign --add-missing --copy
-  autoconf
-fi