diff options
author | Michael G. Schwern <schwern@pobox.com> | 2002-05-17 13:17:54 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-05-17 21:35:45 +0000 |
commit | 57b1a898feef90fc19df54256136c678f3487b9a (patch) | |
tree | eb4a34df55a9efa72471dfd3553566dbe03c8bf9 /lib/ExtUtils/MM_NW5.pm | |
parent | 72699b0f2772b6d9c4affdf9e0a3a501db463332 (diff) | |
download | perl-57b1a898feef90fc19df54256136c678f3487b9a.tar.gz |
ExtUtils::MakeMaker 5.92_01 -> 5.94_02
Message-ID: <20020517211754.GK13131@ool-18b93024.dyn.optonline.net>
p4raw-id: //depot/perl@16663
Diffstat (limited to 'lib/ExtUtils/MM_NW5.pm')
-rw-r--r-- | lib/ExtUtils/MM_NW5.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/ExtUtils/MM_NW5.pm b/lib/ExtUtils/MM_NW5.pm index 97cee2e92d..cd08a7262e 100644 --- a/lib/ExtUtils/MM_NW5.pm +++ b/lib/ExtUtils/MM_NW5.pm @@ -23,7 +23,7 @@ use Config; use File::Basename; use vars qw(@ISA $VERSION); -$VERSION = '2.02_01'; +$VERSION = '2.04_01'; require ExtUtils::MM_Win32; @ISA = qw(ExtUtils::MM_Win32); @@ -72,7 +72,7 @@ sub const_cccmd { return $self->{CONST_CCCMD} = <<'MAKE_FRAG'; CCCMD = $(CC) $(CCFLAGS) $(INC) $(OPTIMIZE) \ $(PERLTYPE) $(MPOLLUTE) -o $@ \ - -DVERSION="$(VERSION)" -DXS_VERSION="$(XS_VERSION)" + -DVERSION=\"$(VERSION)\" -DXS_VERSION=\"$(XS_VERSION)\" MAKE_FRAG } @@ -259,7 +259,7 @@ END # If this extension has it's own library (eg SDBM_File) # then copy that to $(INST_STATIC) and add $(OBJECT) into it. $m .= <<'END' if $self->{MYEXTLIB}; - $self->{CP} $(MYEXTLIB) $\@ + $self->{CP} $(MYEXTLIB) $@ END my $ar_arg; @@ -284,6 +284,7 @@ END END + $m .= $self->dir_target('$(INST_ARCHAUTODIR)'); return $m; } |