Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Jun 2001 16:14:58 +0200 (CEST)
From:      girgen@partitur.se
To:        FreeBSD-gnats-submit@freebsd.org
Cc:        Jimmy Olgeni <olgeni@freebsd.org>
Subject:   ports/28120: Fix for batch building of postgresql
Message-ID:  <200106131414.f5DEEwa20670@elbas.partitur.se>

next in thread | raw e-mail | index | archive | help

>Number:         28120
>Category:       ports
>Synopsis:       Fix for batch building of postgresql
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jun 13 07:20:03 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     Palle Girgensohn
>Release:        FreeBSD 4.3-RELEASE i386
>Organization:
Partitur
>Environment:
System: FreeBSD elbas.partitur.se 4.3-RELEASE FreeBSD 4.3-RELEASE #0: Sat Apr 28 01:09:13 CEST 2001 girgen@optogan.partitur.se:/usr/obj/usr/src/sys/WORKSTATION i386


	
>Description:
Last patch introduced a bug (don't they all... :-/ ) when building in batch mode. Here's the fix

Also, MKDIR includes -p, so another -p is redundant
	
>How-To-Repeat:
cd /usr/ports/databases/postgresql7; make -DBATCH fetch
>Fix:
Index: scripts/configure.postgresql
===================================================================
RCS file: /net/elbas/opt/ncvs/ports/databases/postgresql7/scripts/configure.postgresql,v
retrieving revision 1.6
diff -u -u -r1.6 configure.postgresql
--- scripts/configure.postgresql	2001/06/13 03:16:57	1.6
+++ scripts/configure.postgresql	2001/06/13 14:09:54
@@ -15,7 +15,7 @@
 fi
 
 if [ "${BATCH}" ]; then
-	set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TK\"
+	set \"MultiByte\" \"ODBC\" \"SSL\" \"TCL\" \"TCLTK\"
 else
 	/usr/bin/dialog --title "configuration options" --clear \
 					--checklist "\n\
@@ -47,7 +47,7 @@
 	esac
 fi
 
-${MKDIR} -p ${WRKDIRPREFIX}${CURDIR}
+${MKDIR} ${WRKDIRPREFIX}${CURDIR}
 exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
 
 while [ "$1" ]; do
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200106131414.f5DEEwa20670>