Files
gentoo/app-misc/fdutils/files/fdutils-5.6_p2-variable-ar.patch
Thomas Bracht Laumann Jespersen bd003ff3ac app-misc/fdutils: Fix direct calls to "ar"
Closes: https://bugs.gentoo.org/834874
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
Closes: https://github.com/gentoo/gentoo/pull/24477
Signed-off-by: Sam James <sam@gentoo.org>
2022-03-15 17:31:23 +00:00

31 lines
780 B
Diff

Add variable for ${AR}
--- a/configure.in
+++ b/configure.in
@@ -6,6 +6,7 @@ AC_PROG_MAKE_SET
dnl Checks for compiler
AC_PROG_CC
+AM_PROG_AR
AC_PROG_GCC_TRADITIONAL
AC_PROG_INSTALL
AC_PROG_LN_S
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -21,6 +21,7 @@ sysconfdir = $(DESTDIR)@sysconfdir@
datarootdir = $(DESTDIR)@datarootdir@
CC = @CC@
+AR = @AR@
PID = -DPIDFILE=\"@localstatedir@/run/diskseekd.pid\"
DEFINES = $(DEFINES) $(PID) -DSYSCONFDIR=\"@sysconfdir@\"
DEFS = @DEFS@ -DSYSCONFDIR=\"@sysconfdir@\"
@@ -69,7 +70,7 @@ lex.%.c: %.lex
lex -P$* $<
libfdutils.a: $(LIBFILES)
- ar rcs $@ $^
+ $(AR) rcs $@ $^
floppycontrol.o getfdprm setfdprm: /usr/include/linux/fd.h
diskseekd.o superformat.o fdrawcmd.o: /usr/include/linux/fd.h \