diff options
author | ryoon <ryoon> | 2013-07-15 02:02:17 +0000 |
---|---|---|
committer | ryoon <ryoon> | 2013-07-15 02:02:17 +0000 |
commit | fd8c019229d4b29e8e415f22be25569d8ab78010 (patch) | |
tree | 7082cd8bccd6e4c222c7d1017f6c4896abcadef6 /lang/scm | |
parent | e630d8b83638d5a20b11327b52b062465bc057c0 (diff) | |
download | pkgsrc-fd8c019229d4b29e8e415f22be25569d8ab78010.tar.gz |
* .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes
are replaced with .include "../../devel/readline/buildlink3.mk", and
USE_GNU_READLINE are removed,
* .include "../../devel/readline/buildlink3.mk" without USE_GNU_READLINE
are replaced with .include "../../mk/readline.buildlink3.mk".
Diffstat (limited to 'lang/scm')
-rw-r--r-- | lang/scm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/scm/Makefile b/lang/scm/Makefile index 7b705c3c3b1..461b8429ad5 100644 --- a/lang/scm/Makefile +++ b/lang/scm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2012/10/02 20:11:53 asau Exp $ +# $NetBSD: Makefile,v 1.24 2013/07/15 02:02:24 ryoon Exp $ # # Convert the version number as follows 2d2 -> 2.4.2, where the d is # changed to a 4, representing the 4th letter. @@ -41,7 +41,7 @@ INSTALL_MAKE_FLAGS+= PREFIX=${DESTDIR}${PREFIX} \ INSTALLATION_DIRS= ${PKGINFODIR} share/scm -.include "../../devel/readline/buildlink3.mk" +.include "../../mk/readline.buildlink3.mk" post-extract: ${SED} -e "s|@SLIB_PREFIX@|"${SLIB_PREFIX:Q}"|g" \ |