From: Richard Levitte Date: Mon, 19 Feb 2001 12:51:14 +0000 (+0000) Subject: Make the choice of "makedepend" program choosable through a switch. X-Git-Tag: OpenSSL_0_9_6a-beta1~32^2~8 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=b0c863865054bdf454f3b381a347a4d105158694 Make the choice of "makedepend" program choosable through a switch. --- diff --git a/util/domd b/util/domd index 23b7dcbade..26dbebf826 100755 --- a/util/domd +++ b/util/domd @@ -4,8 +4,11 @@ TOP=$1 shift -MAKEDEPEND=$1 -shift +if [ "$1" = "-MD" ]; then + shift + MAKEDEPEND=$1 + shift +fi if [ "$MAKEDEPEND" = "" ]; then MAKEDEPEND=makedepend; fi cp Makefile.ssl Makefile.save