diff options
author | sem <sem@FreeBSD.org> | 2005-09-04 00:13:45 +0800 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2005-09-04 00:13:45 +0800 |
commit | 5eed55e24b55453e30b48a49a988b1c151028ea3 (patch) | |
tree | 7df7a5f7f3825a43e4f5de758094b87141272a6d /net-mgmt | |
parent | fe8f6fe854a27841b2a44906e5c12e8b8b7fbd4d (diff) | |
download | freebsd-ports-gnome-5eed55e24b55453e30b48a49a988b1c151028ea3.tar.gz freebsd-ports-gnome-5eed55e24b55453e30b48a49a988b1c151028ea3.tar.zst freebsd-ports-gnome-5eed55e24b55453e30b48a49a988b1c151028ea3.zip |
- Fix a wrong curved brackets placement in patch-configure.in.
Affected when WITH_PGSQL defined.
PR: ports/85678
Reported by: Bryan Fullerton <fehwalker@gmail.com>
Submitted by: bugsgrief@bugsgrief.net
Approved by: maintainer
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/nagios-plugins/files/patch-configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-mgmt/nagios-plugins/files/patch-configure.in b/net-mgmt/nagios-plugins/files/patch-configure.in index 2e1616befe8b..ee9569a408e6 100644 --- a/net-mgmt/nagios-plugins/files/patch-configure.in +++ b/net-mgmt/nagios-plugins/files/patch-configure.in @@ -28,8 +28,8 @@ if test -n "$PGSQL"; then - LDFLAGS="$LDFLAGS -L$PGSQL/lib" - CPPFLAGS="$CPPFLAGS -I$PGSQL/include" -+ LDFLAGS="{$LDFLAGS} -L$PGSQL/lib" -+ CPPFLAGS="{$CPPFLAGS} -I$PGSQL/include" ++ LDFLAGS="${LDFLAGS} -L$PGSQL/lib" ++ CPPFLAGS="${CPPFLAGS} -I$PGSQL/include" fi AC_CHECK_LIB(pq,PQsetdbLogin,,,-lcrypt) if test "$ac_cv_lib_pq_PQsetdbLogin" = "yes"; then |