From d2a420d761c57c312ec5b7cf848aae6904b09f42 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se>
Date: Wed, 20 Oct 2004 18:29:58 +0200
Subject: [PATCH] * Makefile.in: In the assembler rules, there's no need to
 look in $(srcdir) for the input file.

Rev: src/nettle/Makefile.in:1.4
---
 Makefile.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile.in b/Makefile.in
index 38d53644..aa730e37 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -166,14 +166,14 @@ des.o: des.c des.h $(des_headers)
 
 @IF_ENABLE_ASM@%.$(OBJEXT): %.asm asm.m4 machine.m4 config.m4
 @IF_ENABLE_ASM@	$(M4) $(srcdir)/asm.m4 machine.m4 config.m4 \
-@IF_ENABLE_ASM@		`test -f $< || echo '$(srcdir)/'`$< >$*.s
+@IF_ENABLE_ASM@		$< >$*.s
 @IF_ENABLE_ASM@	$(CC) $(CFLAGS) $(CCPIC_MAYBE) -c $*.s -o $@
 @IF_ENABLE_ASM@	echo >$*.d 
 
 # All assembler files should use pic-code only.
 @IF_ENABLE_ASM@%.p$(OBJEXT): %.asm asm.m4 machine.m4 config.m4
 @IF_ENABLE_ASM@	$(M4) $(srcdir)/asm.m4 machine.m4 config.m4 \
-@IF_ENABLE_ASM@		`test -f $< || echo '$(srcdir)/'`$< >$*.s
+@IF_ENABLE_ASM@		$< >$*.s
 @IF_ENABLE_ASM@	$(CC) $(CFLAGS) $(CCPIC) -c $*.s -o $@
 @IF_ENABLE_ASM@	echo >$*.d 
 
-- 
GitLab