Skip to content
This repository was archived by the owner on Jul 8, 2024. It is now read-only.

Commit 003d55b

Browse files
committed
simplify autogen by removing unneeded config run
Since the next step after running ./autogen.sh is always to run ./configure, and as the configure step may fail if certain libraries are not present, we can simplify the build and packaging process by not trying to run a "default" configure job at the end of autogen.sh.
1 parent e2e34fa commit 003d55b

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

autogen.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,5 @@ aclocal -Wall --install -I m4 &&
2727
libtoolize -Wall --copy &&
2828
autoheader -Wall &&
2929
autoconf -Wall &&
30-
automake -Wall --add-missing --copy &&
31-
./configure "$@"
30+
automake -Wall --add-missing --copy
3231

docs/build-install.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,7 @@ $ git clone https://github.com/github/libprojfs.git
134134
source code using the "Clone or download" button on this page.)
135135

136136
Next, run the `autogen.sh` script to generate an [Autoconf][autoconf]
137-
`configure` script. (If you don't have your modified libfuse in a
138-
system location, you may need to supply `CPPFLAGS` and `LDFLAGS`
139-
to `autogen.sh` too; see the next paragraph for an example.)
137+
`configure` script:
140138
```
141139
$ ./autogen.sh
142140
```

0 commit comments

Comments
 (0)