From: Ted Lemon Date: Tue, 20 Jun 2000 20:24:26 +0000 (+0000) Subject: - Add a work. prefix to build subdirectory names so that they all wind X-Git-Tag: V3-BETA-2-PATCH-1~136 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ac5bde5b1338c22f48392fcdf812e4596c9a648;p=thirdparty%2Fdhcp.git - Add a work. prefix to build subdirectory names so that they all wind up in the same place in the list. --- diff --git a/configure b/configure index 93fbfb4da..7aaf02a70 100755 --- a/configure +++ b/configure @@ -127,18 +127,21 @@ if [ x$major != x ] && [ x$minor != x ]; then fi if [ ! -d ${sysname} ]; then - mkdir $sysname + mkdir work.$sysname fi for foo in . client server relay common omapip dhcpctl minires; do - if [ ! -d ${sysname}/$foo ]; then - mkdir ${sysname}/$foo + if [ ! -d work.${sysname}/$foo ]; then + mkdir work.${sysname}/$foo fi (sed $majversubst $minversubst \ -e "/^##--${sysname}--/,/^##--${sysname}--/s/^#//" \ ${sysname}/$foo/Makefile + >work.${sysname}/$foo/Makefile done +# Make the link tree in which to actually build. +make links + exit 0