diff options
author | kent <kent> | 2002-01-24 16:10:35 +0000 |
---|---|---|
committer | kent <kent> | 2002-01-24 16:10:35 +0000 |
commit | 89f4155fb7c363c82087f2e21ad980e1ddc0e23b (patch) | |
tree | 718e1d37bdca7dca54a2c078ebc98b49ead7346e /cross | |
parent | b5d566d1ffad74b7bd0cd976d5f98bd21d43b844 (diff) | |
download | pkgsrc-89f4155fb7c363c82087f2e21ad980e1ddc0e23b.tar.gz |
Use INSTALL_DATA for a DLL instead of INSTALL_PROGRAM.
Diffstat (limited to 'cross')
-rw-r--r-- | cross/i386-mingw32/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cross/i386-mingw32/Makefile b/cross/i386-mingw32/Makefile index bca5e3b4734..8e077702c53 100644 --- a/cross/i386-mingw32/Makefile +++ b/cross/i386-mingw32/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2002/01/24 11:36:10 kent Exp $ +# $NetBSD: Makefile,v 1.6 2002/01/24 16:10:35 kent Exp $ DISTNAME= cross-${TARGET_ARCH}-1.2 PKGREVISION= 2 @@ -136,7 +136,7 @@ mingw-install: libcoldname libmoldname libm libmingwthrd profile/libgmon ; do \ ${INSTALL_DATA} ${MINGW_WRKSRC}/$$file.a ${TARGET_DIR}/lib; \ done - ${INSTALL_PROGRAM} ${MINGW_WRKSRC}/mingwm10.dll ${TARGET_DIR}/lib + ${INSTALL_DATA} ${MINGW_WRKSRC}/mingwm10.dll ${TARGET_DIR}/lib for file in crt1 dllcrt1 crt2 dllcrt2 CRT_noglob crtmt crtst \ profile/gcrt1 profile/gcrt2; do \ ${INSTALL_DATA} ${MINGW_WRKSRC}/$$file.o ${TARGET_DIR}/lib; \ |