mirror of
https://github.com/dustinkirkland/byobu.git
synced 2024-11-12 11:10:08 -08:00
7cf903e5a2
can be used to make release tarball using: ./autogen.sh ./configure make dist
13 lines
132 B
Bash
Executable File
13 lines
132 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
autoreconf -fiv
|
|
|
|
cat << EOF
|
|
The byobu build system is now prepared.
|
|
|
|
To build here, run:
|
|
./configure
|
|
make
|
|
EOF
|