Displaying 1 result from an estimated 1 matches for "zachcart".
Did you mean:
zachary
2008 May 30
1
extlinux VPATH build issue
...'extlinux' executable.
I believe the included fix should resolve the issue. It tells make to
only use the VPATH for *.c and *.o files, which means the VPATH will not
be searched for the 'extlinux' executable.
In case my email client munges up the patch, here is a link:
www.zachcarter.com/extlinux-scrict-vpath.patch
diff --git a/extlinux/Makefile b/extlinux/Makefile
index f426702..f155012 100644
--- a/extlinux/Makefile
+++ b/extlinux/Makefile
@@ -17,7 +17,7 @@ OBJS = $(patsubst %.c,%.o,$(notdir $(SRCS)))
.SUFFIXES: .c .o .i .s .S
-VPATH = .:..:../libinstaller
+vpath %....