diff options
author | dholland <dholland> | 2015-11-08 06:56:54 +0000 |
---|---|---|
committer | dholland <dholland> | 2015-11-08 06:56:54 +0000 |
commit | 1c05746406f7617b4984a07aa445610517bec753 (patch) | |
tree | 71651e76b03cb02bc6c8074beb23d375f58ff38b /graphics | |
parent | 8e4be84d240e32cc4c404785bc8065fd7a8adbae (diff) | |
download | pkgsrc-1c05746406f7617b4984a07aa445610517bec753.tar.gz |
Remove stray && in install rule. This blows up when using a shell other
than netbsd's sh. (that netbsd's sh accepts syntactic nonsense like this
is known)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/flickrnet/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/flickrnet/Makefile b/graphics/flickrnet/Makefile index 7b3e8034dd9..6a4932556e4 100644 --- a/graphics/flickrnet/Makefile +++ b/graphics/flickrnet/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2015/10/10 01:58:09 ryoon Exp $ +# $NetBSD: Makefile,v 1.4 2015/11/08 06:56:54 dholland Exp $ DISTNAME= 3.16 PKGREVISION= 2 @@ -23,7 +23,7 @@ do-build: xbuild FlickrNet/FlickrNet.csproj do-install: - mkdir ${DESTDIR}/${PREFIX}/lib/flickrnet && + mkdir ${DESTDIR}/${PREFIX}/lib/flickrnet install ${WRKSRC}/FlickrNet/bin/Debug/FlickrNet.* \ ${DESTDIR}/${PREFIX}/lib/flickrnet mkdir ${DESTDIR}/${PREFIX}/lib/pkgconfig |