diff options
author | gson <gson@pkgsrc.org> | 2018-02-09 17:35:05 +0000 |
---|---|---|
committer | gson <gson@pkgsrc.org> | 2018-02-09 17:35:05 +0000 |
commit | 635bf9a10fd6d6a7371d77c347f29512abea3907 (patch) | |
tree | fb478a64a2b32bd6f219a1bececf3bc1c7174221 /emulators | |
parent | bdc5bebbd73ff8291ae55b31f15f98c7ef59edbc (diff) | |
download | pkgsrc-635bf9a10fd6d6a7371d77c347f29512abea3907.tar.gz |
simh: Handle spaces in directory name
In the do-install target, deal with the spaces in the directory
name "Visual Studio Projects" instead of printing the message
"install: Visual: stat: No such file or directory" and failing to
install one of the .txt files.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/simh/Makefile | 6 | ||||
-rw-r--r-- | emulators/simh/PLIST | 3 |
2 files changed, 5 insertions, 4 deletions
diff --git a/emulators/simh/Makefile b/emulators/simh/Makefile index 9f64ca3cf86..d9ae3087d33 100644 --- a/emulators/simh/Makefile +++ b/emulators/simh/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.48 2017/12/31 08:50:00 tsutsui Exp $ +# $NetBSD: Makefile,v 1.49 2018/02/09 17:35:05 gson Exp $ DISTNAME= simh-4.0.0 PKGNAME= simh-4.0.0.20170406 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_GITHUB:=simh/} GITHUB_PROJECT= simh @@ -71,7 +71,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/VAX/ka655x.bin ${DESTDIR}${PREFIX}/share/simh ${INSTALL_DATA} ${WRKSRC}/VAX/vmb.exe ${DESTDIR}${PREFIX}/share/simh (cd ${WRKSRC} && for TXT in *.txt */*.txt; do \ - ${INSTALL_DATA} $$TXT ${DESTDIR}${PREFIX}/share/doc/simh; \ + ${INSTALL_DATA} "$$TXT" ${DESTDIR}${PREFIX}/share/doc/simh; \ done) .include "../../devel/SDL2/buildlink3.mk" diff --git a/emulators/simh/PLIST b/emulators/simh/PLIST index 9111ce83275..75a0f938078 100644 --- a/emulators/simh/PLIST +++ b/emulators/simh/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.16 2017/04/07 13:30:01 ryoon Exp $ +@comment $NetBSD: PLIST,v 1.17 2018/02/09 17:35:05 gson Exp $ bin/simh-altair bin/simh-altairz80 bin/simh-b5500 @@ -45,6 +45,7 @@ bin/simh-vax730 bin/simh-vax750 bin/simh-vax780 bin/simh-vax8600 +share/doc/simh/0ReadMe_Projects.txt share/doc/simh/0readmeAsynchIO.txt share/doc/simh/0readme_39.txt share/doc/simh/0readme_ethernet.txt |