From: Chris Hanson Date: Mon, 17 Jun 2002 16:31:55 +0000 (+0000) Subject: Use "install -d" to make directories. X-Git-Tag: 20090517-FFI~2181 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=f19820b00baa9503818cd1c78f78eaf2f45e7986;p=mit-scheme.git Use "install -d" to make directories. --- 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"