From c66c40460eb2eb3319befd95b4fac09fce9c9935 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Fri, 2 Sep 1994 01:53:33 +0000 Subject: [PATCH] Fixed a couple of typos. Ok, this works now. Only one significant hurdle remains, and that's that this does not work with multiple targets, which sort of throws the tk and fvwm distributions into a mess. tk needs both a tarball and a patch file from the same site, fvwm needs up to 3 different files if you want all the options. If anyone wants to take this the last few steps of the way towards somehow handling cases like this, I'd be very happy. Submitted by: jkh --- share/mk/bsd.port.mk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index ac8ec59d56a2..01861916153c 100644 --- a/share/mk/bsd.port.mk +++ b/share/mk/bsd.port.mk @@ -1,7 +1,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.25 1994/09/02 01:13:47 jkh Exp $ +# $Id: bsd.port.mk,v 1.26 1994/09/02 01:32:13 jkh Exp $ # # Supported Variables and their behaviors: @@ -284,13 +284,13 @@ ${EXTRACT_COOKIE}: echo ">> Sorry, I can't seem to find: ${DISTFILE}"; \ echo ">> on this system."; \ if [ -f ${NCFTP} ]; then \ - echo ">> Attempting to fetch ${HOME_LOCATION}.";\ - if [ ! -d `dirname ${DISTFILE}`; then \ + echo ">> Attempting to fetch ${HOME_LOCATION}."; \ + if [ ! -d `dirname ${DISTFILE}` ]; then \ mkdir -p `dirname ${DISTFILE}`; \ - fi \ + fi; \ if cd `dirname ${DISTFILE}`; then \ if ${NCFTP} ${HOME_LOCATION}; then \ - ${EXTRACT_CMD} ${EXTRACT_ARGS}; \ + ${EXTRACT_CMD} ${EXTRACT_ARGS} ${DISTFILE}; \ else \ echo ">> Couldn't fetch it - please retreive ${DISTFILE} manually and try again."; \ exit 1; \