Files
gentoo/dev-java/commons-daemon/files/commons-daemon-1.3.1-Make.patch
Volkmar W. Pogatzki 5c26e8b9cd dev-java/commons-daemon: do not call ar directly
Closes: https://bugs.gentoo.org/848498
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/25700
Signed-off-by: Sam James <sam@gentoo.org>
2022-06-01 00:44:49 +01:00

22 lines
508 B
Diff

--- a/src/native/unix/Makedefs.in
+++ b/src/native/unix/Makedefs.in
@@ -17,6 +17,7 @@
# @author Pier Fumagalli <mailto:pier.fumagalli@eng.sun.com>
+AR = @AR@
CC = @CC@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
--- a/src/native/unix/native/Makefile.in
+++ b/src/native/unix/native/Makefile.in
@@ -31,7 +31,7 @@ OBJS = arguments.o \
all: jsvc libservice.a
libservice.a: $(OBJS)
- ar cr libservice.a $(OBJS)
+ ${AR} cr libservice.a $(OBJS)
$(RANLIB) libservice.a
jsvc: jsvc-unix.o libservice.a