Update of /cvsroot/linux-vax/kernel-2.5/arch/vax
In directory sc8-pr-cvs1:/tmp/cvs-serv26169/arch/vax
Modified Files:
Makefile
Log Message:
I don't think we should be passing a fully-qualified path to
make -f .../Makefile.build obj=/usr/..../arch/vax/boot/tools. So
remove the TOPDIR part from TOOLSDIR definition.
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/Makefile,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- Makefile 18 Jun 2003 22:58:01 -0000 1.22
+++ Makefile 24 Aug 2003 12:41:27 -0000 1.23
@@ -36,11 +36,11 @@
core-y += arch/vax/kernel/ arch/vax/mm/
libs-y += arch/vax/lib/
-TOOLSDIR := $(TOPDIR)/arch/vax/boot/tools
-MKBOOTBLK := $(TOOLSDIR)/mkbootblk
+TOOLSDIR := arch/vax/boot/tools
+MKBOOTBLK := $(TOPDIR)/$(TOOLSDIR)/mkbootblk
DEFAULT_CMDLINE := root=/dev/nfs nfsroot=/home/disk_vax/vaxroot ip=bootp rw debug
-SETCMDLINE := $(TOOLSDIR)/setcmdline
-SHOWCMDLINE := $(TOOLSDIR)/showcmdline
+SETCMDLINE := $(TOPDIR)/$(TOOLSDIR)/setcmdline
+SHOWCMDLINE := $(TOPDIR)/$(TOOLSDIR)/showcmdline
# Default target if none specified is to make a MOP image
all: mopboot
|