Commit 4980bad
fix(configure): misleading error if C compiler is not installed
While preparing a new system for development, `./configure` reaches a point
where it fails with:
```
$ ./configure
dracut needs fts development files.
```
After installing the fts library, `./configure` keeps throwing the same error:
```
$ rpm -qf /usr/include/fts.h
glibc-devel-2.38-6.1.x86_64
$ ./configure
dracut needs fts development files.
```
The problem is `${CC} $CFLAGS $LDFLAGS conftest.c` can also fail if the compiler
referenced by `$CC` is not installed.1 parent de8ac63 commit 4980bad
1 file changed
+5
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
63 | 68 | | |
64 | 69 | | |
65 | 70 | | |
| |||
0 commit comments