Ticket #1984 (closed defect: fixed)

Opened 4 years ago

Last modified 4 years ago

backticks should not be in quotes in configure.in

Reported by: ajolma Owned by: 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

Changed 4 years ago by warmerdam

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

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

Note: See TracTickets for help on using tickets.