mirror of
https://git.freebsd.org/ports.git
synced 2025-07-09 13:29:24 -04:00
- Fix problem with firebird.msg. It was installed only for -server, but it's necessary for -client too (thanks to skv@ for pointing this out). - Utilize PORTDOCS and SUBFILES, respect NOPORTDOCS. - Utilize DOCSDIR and EXAMPLESDIR. - Back to use do-build. - Add $FreeBSD$ tag to pkg-plist* and pkg-install. - Remove code that changes automatically /etc/services and /etc/inetd.conf and change pkg-message to reflect this. PR: ports/81214 Submitted by: maintainer
12 lines
337 B
C++
12 lines
337 B
C++
--- src/jrd/gds.cpp.orig Fri May 20 16:14:19 2005
|
|
+++ src/jrd/gds.cpp Fri May 20 16:31:25 2005
|
|
@@ -1736,8 +1736,7 @@
|
|
gds__prefix(ib_prefix_msg, "");
|
|
}
|
|
else {
|
|
- strcat(ib_prefix_msg_val, ib_prefix_msg);
|
|
- ib_prefix_msg = ib_prefix_msg_val;
|
|
+ strcpy(ib_prefix_msg, "%%DATADIR%%");
|
|
}
|
|
}
|
|
strcat(string, ib_prefix_msg);
|