Revision 7ffae98ba5bdc1b8fd3917d99280ae1eaf180f57 authored by Glen Barber on 06 July 2017, 04:03:21 UTC, committed by Glen Barber on 06 July 2017, 04:03:21 UTC
 MFC r320599:
 Fix Vagrant image upload after recent API changes.

 - Update ATLAS_UPLOAD_URL to avoid various regular expressions
   from failing to match due to redirections.
 - Use ATLAS_UPLOAD_URL throughout the script.
 - Adjust several regular expression patterns.

Approved by:	re (kib)
Sponsored by:	The FreeBSD Foundation
1 parent 5f2cafa
Raw File
Makefile
#	@(#)Makefile	8.4 (Berkeley) 6/22/95
#
# $FreeBSD$

PACKAGE=runtime
PROG=	umount
SRCS=	umount.c vfslist.c mounttab.c
MAN=	umount.8

MOUNT=	${.CURDIR:H}/mount
UMNTALL= ${SRCTOP}/usr.sbin/rpc.umntall
CFLAGS+= -I${MOUNT} -I${UMNTALL}

.PATH: ${MOUNT} ${UMNTALL}

.include <bsd.prog.mk>
back to top