Ticket #1984 (closed defect: fixed)

Opened 9 months ago

Last modified 9 months ago

backticks should not be in quotes in configure.in

Reported by: ajolma Assigned to: warmerdam
Priority: normal Milestone: 1.4.4
Component: ConfigBuild Version: unspecified
Severity: normal Keywords: postgres pg
Cc: mloskot

Description

statement like:

LIBS="-L`$PG_CONFIG --libdir` -lpq"

adds in some shells (for example in MSYS) A into LIBS, a more correct quoting would be:

LIBS=-L`$PG_CONFIG --libdir`" -lpq"

This is discussed for example in http://osdir.com/ml/gnu.mingw.msys/2006-01/msg00015.html

Change History

11/12/07 10:57:30 changed by warmerdam

  • keywords set to postgres pg.
  • status changed from new to closed.
  • resolution set to fixed.
  • cc set to mloskot.
  • milestone set to 1.4.4.

Fixed in trunk (r12725) and 1.4 (r12726). Adding mloskot as a cc as a FYI.