diff options
author | asami <asami@FreeBSD.org> | 1996-12-03 12:07:49 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-12-03 12:07:49 +0800 |
commit | e4584abf1b35ba3815cf1f919f2a7543cd0a631e (patch) | |
tree | 5f8a8d738c20e24e4c53eaae0920326e05fd378f /misc | |
parent | eec7f3c3e488f85dc7b239334a3f0f42a23f2071 (diff) | |
download | freebsd-ports-gnome-e4584abf1b35ba3815cf1f919f2a7543cd0a631e.tar.gz freebsd-ports-gnome-e4584abf1b35ba3815cf1f919f2a7543cd0a631e.tar.zst freebsd-ports-gnome-e4584abf1b35ba3815cf1f919f2a7543cd0a631e.zip |
${DISTDIR} -> ${DISTDIR}/${DIST_SUBDIR} change.
Hinted by: obrien
Diffstat (limited to 'misc')
-rw-r--r-- | misc/astrolog/Makefile | 4 | ||||
-rw-r--r-- | misc/mmv/Makefile | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/misc/astrolog/Makefile b/misc/astrolog/Makefile index 41994a46e958..c1e4e4495313 100644 --- a/misc/astrolog/Makefile +++ b/misc/astrolog/Makefile @@ -7,7 +7,7 @@ # Date created: 31 July 1995 # Whom: faulkner@cactus.org # -# $Id: Makefile,v 1.4 1996/07/14 07:28:54 ache Exp $ +# $Id: Makefile,v 1.5 1996/11/11 05:49:12 obrien Exp $ # DISTNAME= astrolog-5.20 @@ -27,7 +27,7 @@ EPHEM= lrz5_24 chi_24 cpjv_24 post-extract: cd ${WRKSRC}/..; \ for i in ${EPHEM}; do \ - zcat ${DISTDIR}/$$i.gz > \ + zcat ${DISTDIR}/${DIST_SUBDIR}/$$i.gz > \ `echo $$i | tr '[:lower:]' '[:upper:]'`; \ done diff --git a/misc/mmv/Makefile b/misc/mmv/Makefile index 08eac9081572..7b608d2e16fd 100644 --- a/misc/mmv/Makefile +++ b/misc/mmv/Makefile @@ -3,7 +3,7 @@ # Date created: 2 Feb 1995 # Whom: Michael Elbel (me) # -# $Id: Makefile,v 1.11 1996/06/26 22:33:17 gpalmer Exp $ +# $Id: Makefile,v 1.12 1996/11/11 05:49:49 obrien Exp $ # DISTNAME= mmv @@ -22,8 +22,8 @@ NO_WRKSUBDIR= yes # targets shamelessly hacked from the bsd.ports.mk file do-fetch: - @if [ ! -d ${DISTDIR} ]; then mkdir -p ${DISTDIR}; fi - @(cd ${DISTDIR}; \ + @${MKDIR} ${DISTDIR}/${DIST_SUBDIR} + @(cd ${DISTDIR}/${DIST_SUBDIR}; \ for file in ${SITE_DISTFILES}; do \ if [ ! -f `basename $$file` ]; then \ echo ">> `basename $$file` doesn't seem to exist on this system."; \ @@ -36,7 +36,7 @@ do-fetch: done; \ if [ ! -f `basename $$file` ]; then \ echo ">> Couldn't fetch it - please try to retreive this";\ - echo ">> port manually into ${DISTDIR} and try again."; \ + echo ">> port manually into ${DISTDIR}/${DIST_SUBDIR} and try again."; \ exit 1; \ fi; \ fi \ @@ -48,7 +48,7 @@ pre-extract: do-extract: @${RM} -rf ${WRKDIR} @${MKDIR} ${WRKDIR}/tmp - @(cd ${DISTDIR} ; for file in ${DISTFILES}; do \ + @(cd ${DISTDIR}/${DIST_SUBDIR} ; for file in ${DISTFILES}; do \ ${CP} $$file ${WRKDIR}/tmp; \ done ; \ cd ${WRKDIR}/tmp; \ |