diff options
author | rodent <rodent> | 2013-04-06 11:39:25 +0000 |
---|---|---|
committer | rodent <rodent> | 2013-04-06 11:39:25 +0000 |
commit | f118c26a4810f7e5cbb11a143ddeb69fdef06159 (patch) | |
tree | e0d87ea517d1495a67fd971dc53bae3be93bcb58 /devel/hdf5-c++ | |
parent | 6f06177703897ffda8688b980c6532b1de0ed163 (diff) | |
download | pkgsrc-f118c26a4810f7e5cbb11a143ddeb69fdef06159.tar.gz |
"$foo is ambiguous. Use ${foo} if you mean a Makefile variable or $$foo if
you mean a shell variable."
Diffstat (limited to 'devel/hdf5-c++')
-rw-r--r-- | devel/hdf5-c++/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/hdf5-c++/Makefile b/devel/hdf5-c++/Makefile index 132725d6470..3fe66dd505a 100644 --- a/devel/hdf5-c++/Makefile +++ b/devel/hdf5-c++/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2011/10/07 10:42:18 alnsn Exp $ +# $NetBSD: Makefile,v 1.2 2013/04/06 11:39:25 rodent Exp $ PKGNAME= hdf5-c++-${HDF5_VER} COMMENT= Hierarchical Data Format (new generation) - C++ wrappers @@ -24,15 +24,15 @@ do-install: H5Exception.h H5FaccProp.h H5FcreatProp.h H5File.h H5FloatType.h \ H5Group.h H5IdComponent.h H5Include.h H5IntType.h H5Library.h \ H5Object.h H5PredType.h H5PropList.h H5StrType.h H5VarLenType.h - ${INSTALL_DATA} ${WRKSRC}/c++/src/$f ${DESTDIR}/${PREFIX}/include/ + ${INSTALL_DATA} ${WRKSRC}/c++/src/${f} ${DESTDIR}/${PREFIX}/include/ .endfor .for f in chunks.cpp compound.cpp create.cpp extend_ds.cpp \ h5group.cpp readdata.cpp run-c++-ex.sh writedata.cpp - ${INSTALL_DATA} ${WRKSRC}/c++/examples/$f \ + ${INSTALL_DATA} ${WRKSRC}/c++/examples/${f} \ ${DESTDIR}/${PREFIX}/share/examples/hdf5/c++/ .endfor .for f in ptExampleFL.cpp ptExampleVL.cpp run-hlc++-ex.sh - ${INSTALL_DATA} ${WRKSRC}/hl/c++/examples/$f \ + ${INSTALL_DATA} ${WRKSRC}/hl/c++/examples/${f} \ ${DESTDIR}/${PREFIX}/share/examples/hdf5/hl/c++/ .endfor |