diff options
author | grr <grr@cvs.openbsd.org> | 1997-06-06 17:41:30 +0000 |
---|---|---|
committer | grr <grr@cvs.openbsd.org> | 1997-06-06 17:41:30 +0000 |
commit | 1bd2f19a3308fa87386c20aea23bd537a9ee3c8c (patch) | |
tree | e87298c3485ea07bc5067c1c391ee9d363c499c9 | |
parent | b4961539d25a0eba0dc527484e9d915ba2514ac8 (diff) |
fix a problem where make works once and fails on a second try due to some symlink already existing
-rw-r--r-- | gnu/lib/libg++/libg++/Makefile.bsd-wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/libg++/libg++/Makefile.bsd-wrapper b/gnu/lib/libg++/libg++/Makefile.bsd-wrapper index 78c5402334c..8354ca50a64 100644 --- a/gnu/lib/libg++/libg++/Makefile.bsd-wrapper +++ b/gnu/lib/libg++/libg++/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.7 1997/02/21 07:33:21 tholo Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.8 1997/06/06 17:41:29 grr Exp $ .if defined(OBJMACHINE) OBJDIR= obj.${MACHINE} @@ -65,7 +65,7 @@ all: rx.h $(G_CFG_H) beforedepend: rx.h $(G_CFG_H) rx.h: - ln -s $(RX_DIR)/rx.h + ln -sf $(RX_DIR)/rx.h $(G_CFG_H): @cd $(LIBIO_DIR); $(MAKE) -f Makefile.bsd-wrapper _G_config.h |