diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2014-06-08 12:33:22 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2014-06-08 12:33:22 +0000 |
commit | fcb9f04b9c76019d3841f4f20b3bd503bbf2d65b (patch) | |
tree | 237bf272c5bae755b7860cf4749011c637f32aeb /audio | |
parent | 5e3e83fd12e5ba74b53ecda0f2d84f83a3cc753d (diff) | |
download | ports-fcb9f04b9c76019d3841f4f20b3bd503bbf2d65b.tar.gz ports-fcb9f04b9c76019d3841f4f20b3bd503bbf2d65b.zip |
Fix a symlink pointing to itself
Notes
Notes:
svn path=/head/; revision=357010
Diffstat (limited to 'audio')
-rw-r--r-- | audio/mpg123.el/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/mpg123.el/Makefile b/audio/mpg123.el/Makefile index 134bb55325e0..9c7ce3557415 100644 --- a/audio/mpg123.el/Makefile +++ b/audio/mpg123.el/Makefile @@ -3,6 +3,7 @@ PORTNAME= mpg123.el PORTVERSION= 1.52 +PORTREVISION= 1 CATEGORIES= audio elisp MASTER_SITES= http://www.gentei.org/~yuuji/software/mpg123el/ EXTRACT_SUFX= # empty @@ -29,6 +30,6 @@ do-install: ${INSTALL_DATA} ${DISTDIR}/mpg123el.cgi?${PORTVERSION} ${STAGEDIR}${ELISPDIR}/${PORTNAME} # For XEmacs @${MKDIR} ${STAGEDIR}${XELISPDIR} - ${LN} -sf ${PORTNAME} ${STAGEDIR}${XELISPDIR}/${PORTNAME} + ${LN} -sf ${ELISPDIR}${PORTNAME} ${STAGEDIR}${XELISPDIR}/${PORTNAME} .include <bsd.port.mk> |