Skip to content

Commit

Permalink
Make the choice of "makedepend" program choosable through a switch.
Browse files Browse the repository at this point in the history
  • Loading branch information
levitte committed Feb 19, 2001
1 parent b36c170 commit b0c8638
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions util/domd
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b0c8638

Please sign in to comment.