From: Hartmut Reuter Date: Tue, 6 Mar 2001 22:21:50 +0000 (+0000) Subject: STABLE10-allow-shadowed-src-trees-20010305 X-Git-Tag: openafs-stable-1_0_3~13 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=207101b3a52d7d877cb4f4ef5e8a06329915c087;p=packages%2Fo%2Fopenafs.git STABLE10-allow-shadowed-src-trees-20010305 (cherry picked from commit c8bfbcc55d83ff0156fcb02e07baf98fd17fcea0) --- diff --git a/src/Makefile b/src/Makefile index 8d528f9a7..726cf487f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -522,12 +522,14 @@ links: - /bin/rm -rf @sys/dest/* ; - /bin/mkdir @sys/obj ; echo "Create the obj directories" + here=`pwd` ; \ cd src; \ for file in `find [!NW]* -type d -print` ; do \ - /bin/mkdir ../obj/$${file} ; \ + /bin/mkdir $${here}/obj/$${file} ; \ done; echo "Create the obj file links" + here=`pwd` ; \ cd src; \ for file in `find [!NW]* -type f -print` ; do \ - /bin/ln -s `pwd`/$${file} ../obj/$${file} ; \ + /bin/ln -s `pwd`/$${file} $${here}/obj/$${file} ; \ done;