From: Lucas De Marchi Date: Fri, 1 Nov 2024 20:03:33 +0000 (-0500) Subject: README: Let autotools follow the same steps as meson X-Git-Tag: v34~141 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18c91d392aad8633d46555dda6f9973104a36975;p=thirdparty%2Fkmod.git README: Let autotools follow the same steps as meson For meson it's configure & build & install in the same snippet. Do the same for autotools. Signed-off-by: Lucas De Marchi Reviewed-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/221 --- diff --git a/README.md b/README.md index 668c59ed..995eb077 100644 --- a/README.md +++ b/README.md @@ -57,11 +57,6 @@ NOTE: The autotools build is slated for removal with kmod v35 ./configure CFLAGS="-g -O2" --prefix=/usr \ --sysconfdir=/etc --libdir=/usr/lib - -Configure automatically searches for all required components and packages. - -To compile and install run: - make && make install Hacking