diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2004-01-23 05:28:50 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2004-01-23 05:28:50 +0000 |
commit | 06acd13c21bb0676c544f32d463c63244fdd0f41 (patch) | |
tree | 087106d0ee3a86a8cdc22147ff10814f7970e4c5 /math | |
parent | Require perl 5.8 or higher for building. This should fix packaging on (diff) |
Use LS macro.
Diffstat (limited to 'math')
-rw-r--r-- | math/arpack++/Makefile | 2 | ||||
-rw-r--r-- | math/umfpack/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/math/arpack++/Makefile b/math/arpack++/Makefile index ecf27c317e63..11b092536a38 100644 --- a/math/arpack++/Makefile +++ b/math/arpack++/Makefile @@ -40,7 +40,7 @@ post-patch: do-install: @${MKDIR} ${PREFIX}/include/ARPACK++ - @for inc in `ls ${WRKSRC}/include` ; do \ + @for inc in `${LS} ${WRKSRC}/include` ; do \ ${INSTALL_DATA} ${WRKSRC}/include/$$inc ${PREFIX}/include/ARPACK++; \ done .if !defined(NOPORTDOCS) diff --git a/math/umfpack/Makefile b/math/umfpack/Makefile index 230cf8c1a728..4026aeedbefd 100644 --- a/math/umfpack/Makefile +++ b/math/umfpack/Makefile @@ -28,7 +28,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/Lib/libumfpack.a ${PREFIX}/lib .for mod in AMD UMFPACK @${MKDIR} ${PREFIX}/include/${mod} - @for inc in `ls ${WRKSRC}/../${mod}/Include` ; do \ + @for inc in `${LS} ${WRKSRC}/../${mod}/Include` ; do \ ${INSTALL_DATA} ${WRKSRC}/../${mod}/Include/$$inc ${PREFIX}/include/${mod}; \ done .endfor |