diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-09-30 12:10:57 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-09-30 12:10:57 +0000 |
commit | 82700fa896c7067cca8013f265fc24717b846621 (patch) | |
tree | 8aac06ed61725becef1d4a1cc59a54a800665010 /gnu/egcs/libstdc++/Makefile.bsd-wrapper | |
parent | 5756ea2552cc9ebe1d0757f4186a4ead8cab439c (diff) |
In the construct
VAR!=cat file
make warns if file exists, but is empty
(couldn't read shell output, or such bullshit)
Weird, as everything actually went right.
As I don't want to change that behavior so close to release, and since
the needed-list may again be needed in the future, the line
VAR!=cat file && echo
is used instead. make will happily get a new line to eat, that it will
strip right away => no more warning.
Go figure.
Diffstat (limited to 'gnu/egcs/libstdc++/Makefile.bsd-wrapper')
-rw-r--r-- | gnu/egcs/libstdc++/Makefile.bsd-wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/egcs/libstdc++/Makefile.bsd-wrapper b/gnu/egcs/libstdc++/Makefile.bsd-wrapper index 256049412d3..cb1a42323ae 100644 --- a/gnu/egcs/libstdc++/Makefile.bsd-wrapper +++ b/gnu/egcs/libstdc++/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.4 1999/07/18 18:19:17 espie Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.5 1999/09/30 12:10:55 espie Exp $ IO_DIR= $(.CURDIR)/../libio LIBIBERTY_DIR= $(.CURDIR)/../libiberty @@ -50,7 +50,7 @@ PREREQ!= test ! -f $(IO_OBJDIR)/iostream.list && \ IO_OBJS!= cat $(IO_OBJDIR)/iostream.list QIO_OBJS= $(IO_OBJS:S/^/$(IO_OBJDIR)\//g) -LIBIBERTY_SRCS!=cat $(LIBIBERTY_OBJDIR)/needed-list +LIBIBERTY_SRCS!=cat $(LIBIBERTY_OBJDIR)/needed-list && echo LIBIBERTY_OBJS=$(LIBIBERTY_SRCS:N*.h:S/.c$/.o/g) # XXX why does strerror.o need to be hardwired? LIBIBERTY_OBJS+=strerror.o |