Bug 51250 - Correction to PR ports/51249
Summary: Correction to PR ports/51249
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-04-21 21:40 UTC by hfir
Modified: 2003-04-25 01:31 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description hfir 2003-04-21 21:40:15 UTC
   Sorry, in the problem report ports/51249 all references to "patch-ab"
   should be replaced with "patch-ac".  The updated report should read:

   'make' fails due to typo in patch-ac. CFLAGS doesn't exist yet, 
   so += operator fails:

      [...]
      ===>  Building for poptop-1.1.3_1
      cd . && aclocal
      cd . && automake --foreign Makefile
      Makefile.am: CFLAGS must be set with `=' before using `+='
      *** Error code 1
      Stop in /usr/ports/net/poptop/work/pptpd-1.1.3.

Fix: 

In patch-ac, change:
   
      +CFLAGS+= -DSBINDIR='"$(sbindir)"' -DETCDIR='"$(sysconfdir)"'
      
   to
      
      +CFLAGS = -DSBINDIR='"$(sbindir)"' -DETCDIR='"$(sysconfdir)"'
Comment 1 Tilman Keskinoz freebsd_committer freebsd_triage 2003-04-25 01:31:45 UTC
State Changed
From-To: open->closed

A fix was committed, thanks for your report.