diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-08 09:14:50 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-08 09:14:50 +0000 |
commit | 6419e9879b474c98a43178286be712c4c66d688c (patch) | |
tree | 356279c88f9f511ada65af8f32de696aad0f8053 /lang | |
parent | ebd4672dbd38cb5b1d2053e25560fa13b179baef (diff) | |
download | pkgsrc-6419e9879b474c98a43178286be712c4c66d688c.tar.gz |
Fixed PLIST quoting issue introduced by the recent "pkglint --autofix"
change.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/ruby/Makefile.common | 4 | ||||
-rw-r--r-- | lang/smlnj/Makefile.common | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lang/ruby/Makefile.common b/lang/ruby/Makefile.common index 31540c430c5..6c0e6724304 100644 --- a/lang/ruby/Makefile.common +++ b/lang/ruby/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.8 2005/12/05 20:50:27 rillig Exp $ +# $NetBSD: Makefile.common,v 1.9 2005/12/08 09:14:50 rillig Exp $ # # Ruby base distribution common definition @@ -38,7 +38,7 @@ DIST_SUBDIR?= ${RUBY_DIST_SUBDIR} # PLIST_SUBST+= RUBY_SHLIBVER=${RUBY_SHLIBVER:Q} \ RUBY_SHLIBMAJOR=${RUBY_SHLIBMAJOR:Q} \ - RUBY_NOSHLIBMAJOR=${RUBY_NOSHLIBMAJOR:Q} \ + RUBY_NOSHLIBMAJOR=${RUBY_NOSHLIBMAJOR} \ RUBY_NAME=${RUBY_NAME:Q} # Common macros. diff --git a/lang/smlnj/Makefile.common b/lang/smlnj/Makefile.common index a1c56a9350b..e458cf295b9 100644 --- a/lang/smlnj/Makefile.common +++ b/lang/smlnj/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.5 2005/12/05 20:50:27 rillig Exp $ +# $NetBSD: Makefile.common,v 1.6 2005/12/08 09:15:37 rillig Exp $ # smlnj also supports hppa, sparc, ppc, mlrisc & alpha # pkg support for those platforms, and say, solaris-x86 @@ -28,4 +28,4 @@ NLFFI= "@comment " BOX= ${MACHINE_ARCH} .endif -PLIST_SUBST+= BOX=${BOX:Q} OS=${OS:Q} NLFFI=${NLFFI:Q} +PLIST_SUBST+= BOX=${BOX:Q} OS=${OS:Q} NLFFI=${NLFFI} |