aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorasami <asami@FreeBSD.org>1995-07-04 12:33:08 +0800
committerasami <asami@FreeBSD.org>1995-07-04 12:33:08 +0800
commit752ee554e230e91b53fcf4ad6541d54a1c45d93b (patch)
treef23724d9600be7143ee99b08e16c2c27f18bbdf8
parent8033f13de6cee6c6bc4139b07fec2e3a93c26614 (diff)
downloadfreebsd-ports-gnome-752ee554e230e91b53fcf4ad6541d54a1c45d93b.tar.gz
freebsd-ports-gnome-752ee554e230e91b53fcf4ad6541d54a1c45d93b.tar.zst
freebsd-ports-gnome-752ee554e230e91b53fcf4ad6541d54a1c45d93b.zip
Change "install -d <dir>" to mkdir.
-rw-r--r--audio/rsynth/files/patch-ac11
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/rsynth/files/patch-ac b/audio/rsynth/files/patch-ac
new file mode 100644
index 000000000000..d2f780df5b19
--- /dev/null
+++ b/audio/rsynth/files/patch-ac
@@ -0,0 +1,11 @@
+--- ./Makefile.in.org Tue Nov 8 05:30:52 1994
++++ ./Makefile.in Mon Jul 3 21:29:28 1995
+@@ -67,7 +67,7 @@
+ for f in $(PROGS); do \
+ $(INSTALL_PROG) $$f $(BIN_DIR); \
+ done
+- $(INSTALL) -d $(LIB_DIR)
++ if [ ! -d $(LIB_DIR) ]; then mkdir -p $(LIB_DIR); fi
+ for f in $(DICTS); do \
+ $(INSTALL_DATA) $$f $(LIB_DIR); \
+ done