From f19820b00baa9503818cd1c78f78eaf2f45e7986 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 17 Jun 2002 16:31:55 +0000 Subject: [PATCH] Use "install -d" to make directories. --- v7/dist/make-dist-files | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v7/dist/make-dist-files b/v7/dist/make-dist-files index f61cc5a45..384e0ab60 100755 --- a/v7/dist/make-dist-files +++ b/v7/dist/make-dist-files @@ -1,8 +1,8 @@ #!/bin/sh -# $Id: make-dist-files,v 1.20 2001/04/14 01:57:06 cph Exp $ +# $Id: make-dist-files,v 1.21 2002/06/17 16:31:55 cph Exp $ # -# Copyright (c) 2000-2001 Massachusetts Institute of Technology +# Copyright (c) 2000-2002 Massachusetts Institute of Technology # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -59,7 +59,7 @@ if [ ! -f "${SRC_FILE}" ]; then exit 1 fi -MKDIR="mkdir -p" +MKDIR="install -d -m 755" INSTALL="install -p" INSTALL_DATA="${INSTALL} -m 644" -- 2.25.1