'obj' was missing in echo which informed of symlink creation
This commit is contained in:
parent
4418616857
commit
670644d93b
|
@ -1,4 +1,4 @@
|
|||
# $Id: bsd.obj.mk,v 1.1 1993/08/15 19:26:09 mycroft Exp $
|
||||
# $Id: bsd.obj.mk,v 1.2 1993/10/21 05:27:40 cgd Exp $
|
||||
|
||||
.if !target(obj)
|
||||
.if defined(NOOBJ)
|
||||
|
@ -9,7 +9,7 @@ obj:
|
|||
here=`pwd`; subdir=`echo $$here | sed 's,^/usr/src/,,'`; \
|
||||
if test $$here != $$subdir ; then \
|
||||
dest=/usr/obj/$$subdir ; \
|
||||
echo "$$here -> $$dest"; ln -s $$dest obj; \
|
||||
echo "$$here/obj -> $$dest"; ln -s $$dest obj; \
|
||||
if test -d /usr/obj -a ! -d $$dest; then \
|
||||
mkdir -p $$dest; \
|
||||
else \
|
||||
|
|
Loading…
Reference in New Issue