diff options
author | bsam <bsam@FreeBSD.org> | 2009-05-14 12:51:34 +0800 |
---|---|---|
committer | bsam <bsam@FreeBSD.org> | 2009-05-14 12:51:34 +0800 |
commit | 06d106ee83d6e6f937a82ee96fcae52e243c33fd (patch) | |
tree | 59206fbe428842761a004d842e4df7b0e07d53b5 /net-im/skype | |
parent | b955652eda1b7c1965e16974b38df304f492d732 (diff) | |
download | freebsd-ports-gnome-06d106ee83d6e6f937a82ee96fcae52e243c33fd.tar.gz freebsd-ports-gnome-06d106ee83d6e6f937a82ee96fcae52e243c33fd.tar.zst freebsd-ports-gnome-06d106ee83d6e6f937a82ee96fcae52e243c33fd.zip |
Create ${PREFIX}/${SKYPEDIR} before doing ${COPYTREE_SHARE}.
Without this step installing the port at 7.x has the effect:
-----
% ls -ld /usr/local/share/skype
drwx------ 6 root wheel 512 12 May 12:20 /usr/local/share/skype
% skype
/usr/local/bin/skype: /usr/local/share/skype/skype: Permission denied
-----
FreeBSD 8.x is not affected since it uses BSD cpio (at ${COPYTREE_SHARE})
which behaves as expected.
Note: packages are not affected, no PORTREVISION bump.
PR: ports/134471
Submitted by: bsam (me)
Approved by: miwi (co-maintainer, by e-mail)
Diffstat (limited to 'net-im/skype')
-rw-r--r-- | net-im/skype/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-im/skype/Makefile b/net-im/skype/Makefile index 15068d6ac156..29a44a3d6a07 100644 --- a/net-im/skype/Makefile +++ b/net-im/skype/Makefile @@ -61,7 +61,7 @@ do-install: @${INSTALL} -d ${PREFIX}/share/applications @${INSTALL_DATA} ${WRKSRC}/skype.desktop ${PREFIX}/share/applications/ @${INSTALL_DATA} ${WRKSRC}/icons/SkypeBlue_48x48.png ${PREFIX}/share/pixmaps/skype.png - @cd ${WRKSRC}/&&${COPYTREE_SHARE} "avatars icons sounds lang" ${PREFIX}/${SKYPEDIR}/ + @cd ${WRKSRC}/ && {MKDIR} ${PREFIX}/${SKYPEDIR} && ${COPYTREE_SHARE} "avatars icons sounds lang" ${PREFIX}/${SKYPEDIR}/ # The binary main program @${INSTALL_PROGRAM} ${WRKSRC}/skype ${PREFIX}/${SKYPEDIR}/ |