You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@spamassassin.apache.org by bu...@bugzilla.spamassassin.org on 2004/04/07 08:43:17 UTC

[Bug 3248] New: makefile minor glitch with (Active) Perl 5.8; fixed

http://bugzilla.spamassassin.org/show_bug.cgi?id=3248

           Summary: makefile minor glitch with (Active) Perl 5.8; fixed
           Product: Spamassassin
           Version: 2.63
          Platform: PC
        OS/Version: Windows 2000
            Status: NEW
          Severity: minor
          Priority: P5
         Component: Building & Packaging
        AssignedTo: spamassassin-dev@incubator.apache.org
        ReportedBy: sernil@tin.it


The PM_FILTER variable definition in the makefile double quote
symbols. When PM_FILTER is quoted in pm_to_blib section later,
nmake gets confused as to where quotes begin and end and build
stops complaining about "bareword" usage.

The build works unquoting -DVERSION and -DPREFIX, in PM_FILTER
definition, so that instead of
 	-DVERSION="$(VERSION)" -DPREFIX="$(I_PREFIX)"
they read
 	-DVERSION=$(VERSION) -DPREFIX=$(I_PREFIX)

This shouldn't cause disruptions, provided both $(VERSION) and
$(I_PREFIX) never get to contain whitespaces.



------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.