From: Chris Hanson Date: Thu, 11 Jul 2002 16:41:40 +0000 (+0000) Subject: Use "install -d" to make directories. X-Git-Tag: 20090517-FFI~2160 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=34ea7322636f309948540b3136a6bf58a2db2902;p=mit-scheme.git Use "install -d" to make directories. --- diff --git a/v7/dist/make-scmutils b/v7/dist/make-scmutils index c6fa6dba1..d89296d97 100755 --- a/v7/dist/make-scmutils +++ b/v7/dist/make-scmutils @@ -1,8 +1,8 @@ #!/bin/sh -# $Id: make-scmutils,v 1.1 2001/04/14 02:34:27 cph Exp $ +# $Id: make-scmutils,v 1.2 2002/07/11 16:41:40 cph Exp $ # -# Copyright (c) 2001 Massachusetts Institute of Technology +# Copyright (c) 2001, 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 @@ -53,7 +53,7 @@ STAMP_UNPACK="${TL_DIR}/stamp-unpack" STAMP_BUILD="${TL_DIR}/stamp-build" STAMP_IMAGE="${TL_DIR}/stamp-image" -MKDIR="mkdir -p" +MKDIR="install -d -m 755" INSTALL="install -p" INSTALL_DATA="${INSTALL} -m 644"