Rename init.sh -> autogen.sh

This commit is contained in:
louib
2020-07-13 19:10:12 -04:00
parent cbe1d83801
commit eb1297913a
4 changed files with 4 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ jobs:
- name: installing system dependencies - name: installing system dependencies
run: sudo apt-get install -y build-essential pkg-config automake libncurses5-dev autotools-dev libparted-dev dmidecode clang-format-5.0 run: sudo apt-get install -y build-essential pkg-config automake libncurses5-dev autotools-dev libparted-dev dmidecode clang-format-5.0
- name: creating autoconf files - name: creating autoconf files
run: ./init.sh run: ./autogen.sh
- name: configuring - name: configuring
run: ./configure CFLAGS='-O0 -g -Wall -Wextra' run: ./configure CFLAGS='-O0 -g -Wall -Wextra'
- name: compiling - name: compiling

View File

@@ -14,7 +14,7 @@ jobs:
- name: installing system dependencies - name: installing system dependencies
run: sudo apt-get install -y build-essential pkg-config automake libncurses5-dev autotools-dev libparted-dev dmidecode clang-format-5.0 run: sudo apt-get install -y build-essential pkg-config automake libncurses5-dev autotools-dev libparted-dev dmidecode clang-format-5.0
- name: creating autoconf files - name: creating autoconf files
run: ./init.sh run: ./autogen.sh
- name: configuring - name: configuring
run: ./configure CFLAGS='-O0 -g -Wall -Wextra' run: ./configure CFLAGS='-O0 -g -Wall -Wextra'
- name: compiling - name: compiling

View File

@@ -98,7 +98,7 @@ For a development setup, see [the hacking section below](#Hacking).
First create all the autoconf files: First create all the autoconf files:
``` ```
./init.sh ./autogen.sh
``` ```
Then compile & install using the following standard commands: Then compile & install using the following standard commands:
@@ -175,7 +175,7 @@ sudo apt install build-essential pkg-config automake libncurses5-dev autotools-d
rm -rf nwipe rm -rf nwipe
git clone https://github.com/martijnvanbrummelen/nwipe.git git clone https://github.com/martijnvanbrummelen/nwipe.git
cd "nwipe" cd "nwipe"
./init.sh ./autogen.sh
./configure ./configure
make make
cd "src" cd "src"

View File