diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-07-04 04:33:08 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-07-04 04:33:08 +0000 |
commit | 18359b4a051800bc0f4ed09014770a6d742223b4 (patch) | |
tree | 28345691b5bbd1fc4311f05aea2a6fcc309c43a8 /audio/rsynth | |
parent | c27c6c409561133d82686a5a346e0599fd2af5b9 (diff) |
Notes
Diffstat (limited to 'audio/rsynth')
-rw-r--r-- | audio/rsynth/files/patch-ac | 11 |
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 |