From 98d051fffe48b30c31c78baea7c92f3293eda848 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 16 Apr 1999 18:15:08 +0000 Subject: Patch from Ralf Corsepius : 1) ./c/src/lib/libbsp/i386/i386ex/startup/Makefile.in > preinstall: > $(INSTALL_CHANGE) ${IMPORT_SRC} . > > # ${CP} ${IMPORT_SRC} . > > > This fragment is broken, because IMPORT_SRC is always empty. IMO, the fix would be to remove this fragment or to replace it with test -z "${IMPORT_SRC}" || cp ${IMPORT_SRC} . if an external shell variable IMPORT_SRC shall be supported by this Makefile, which IMO should not be done. --- c/src/lib/libbsp/i386/i386ex/startup/Makefile.in | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'c/src/lib/libbsp/i386/i386ex/startup/Makefile.in') diff --git a/c/src/lib/libbsp/i386/i386ex/startup/Makefile.in b/c/src/lib/libbsp/i386/i386ex/startup/Makefile.in index 6e4122ce99..6f379b9b9c 100644 --- a/c/src/lib/libbsp/i386/i386ex/startup/Makefile.in +++ b/c/src/lib/libbsp/i386/i386ex/startup/Makefile.in @@ -61,14 +61,9 @@ LDFLAGS += CLEAN_ADDITIONS += CLOBBER_ADDITIONS += -preinstall: - $(INSTALL_CHANGE) ${IMPORT_SRC} . - -# ${CP} ${IMPORT_SRC} . - ${PGM}: ${SRCS} ${OBJS} $(make-rel) -all: ${ARCH} preinstall $(SRCS) $(PGM) +all: ${ARCH} $(SRCS) $(PGM) $(INSTALL_CHANGE) $(srcdir)/linkcmds ${PROJECT_RELEASE}/lib # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile -- cgit v1.2.3