pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/perl5 Use "test -h", instead of "test", to test s...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0ad5efe10fb4
branches:  trunk
changeset: 496496:0ad5efe10fb4
user:      minskim <minskim%pkgsrc.org@localhost>
date:      Thu Jun 30 17:24:49 2005 +0000

description:
Use "test -h", instead of "test", to test symlinks.  This should have
been committed with the previous change.  Noted by jlam@.

Bump PKGREVISION.

diffstat:

 lang/perl5/Makefile |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 4de9aec8326d -r 0ad5efe10fb4 lang/perl5/Makefile
--- a/lang/perl5/Makefile       Thu Jun 30 16:32:29 2005 +0000
+++ b/lang/perl5/Makefile       Thu Jun 30 17:24:49 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.94 2005/06/30 13:07:39 minskim Exp $
+# $NetBSD: Makefile,v 1.95 2005/06/30 17:24:49 minskim Exp $
 
 # The following two variables should have empty values unless we're
 # building a perl snapshot or release candidate.
@@ -13,7 +13,7 @@
 .if empty(PERL5_SNAPSHOT) && empty(PERL5_RC_VERS)
 DISTNAME=      perl-${PERL5_VERS}
 PKGNAME=       perl-${PERL5_VERS}
-PKGREVISION=   5
+PKGREVISION=   6
 MASTER_SITES=  ${MASTER_SITE_PERL_CPAN:S,/modules/by-module/$,/src/,}
 .else
 .  if !empty(PERL5_SNAPSHOT)
@@ -99,7 +99,7 @@
 CONFIGURE_ARGS+=       -Daphostname=${TOOLS_HOSTNAME_CMD:Q}
 CONFIGURE_ARGS+=       -Dln=${TOOLS_LN:Q}
 CONFIGURE_ARGS+=       -Dsed=${TOOLS_SED:Q}
-CONFIGURE_ARGS+=       -Dissymlink=${TOOLS_TEST:Q}
+CONFIGURE_ARGS+=       -Dissymlink="${TOOLS_TEST} -h"
 
 # Nail down the needed libraries for each platform here to avoid hidden
 # dependencies.  If this isn't defined, then use the perl defaults for the



Home | Main Index | Thread Index | Old Index