diff options
author | matthias <matthias@pkgsrc.org> | 1998-09-16 09:37:28 +0000 |
---|---|---|
committer | matthias <matthias@pkgsrc.org> | 1998-09-16 09:37:28 +0000 |
commit | 0db9d8591e3d06bc5ef05e7702f3635e170f923e (patch) | |
tree | 29af30c74cd9d21d325c611d0a69b27b2fdef749 /emulators | |
parent | 3afbd7a81002403d7c81006d11991df3780aa5f0 (diff) | |
download | pkgsrc-0db9d8591e3d06bc5ef05e7702f3635e170f923e.tar.gz |
Change $ii to $$ii in post-install for loop.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/vice/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/vice/Makefile b/emulators/vice/Makefile index 7b9169cd298..9cc4de214af 100644 --- a/emulators/vice/Makefile +++ b/emulators/vice/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 1998/09/13 14:58:41 garbled Exp $ +# $NetBSD: Makefile,v 1.4 1998/09/16 09:37:28 matthias Exp $ DISTNAME= vice-0.15.0 CATEGORIES= emulators @@ -24,7 +24,7 @@ post-install: done; \ done for ii in chargen edit2.b edit4.b40 edit4.b80 pet2001 pet3032 pet4032; do \ - ${INSTALL_DATA} ${WRKSRC}/data/PET/$ii ${PREFIX}/share/vice/PET; \ + ${INSTALL_DATA} ${WRKSRC}/data/PET/$$ii ${PREFIX}/share/vice/PET; \ done .include "../../mk/bsd.pkg.mk" |