mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
cfc2f82c24
mysql322-client uses mysql322-server as a master port. So all the magic is in mysql322-server. mysql322-client must be used to add dependencies to, now. Thanks to Dan Moschuk <dan@trinsec.com> for giving the initial point.
17 lines
589 B
Plaintext
17 lines
589 B
Plaintext
--- Makefile.in.orig Sun Jun 6 04:51:50 1999
|
|
+++ Makefile.in Sat Jun 26 08:53:51 1999
|
|
@@ -141,8 +141,11 @@
|
|
# These are built from source in the Docs directory
|
|
EXTRA_DIST = INSTALL-SOURCE-GENERIC README PUBLIC INSTALL-SOURCE MIRRORS
|
|
|
|
-SUBDIRS = @docs_dirs@ @readline_dir@ client @sql_server_dirs@ scripts include tests man @bench_dirs@ support-files
|
|
-
|
|
+.if defined(CLIENT_ONLY)
|
|
+SUBDIRS = @readline_dir@ client include tests man
|
|
+.else
|
|
+SUBDIRS = @docs_dirs@ @sql_server_dirs@ scripts @bench_dirs@ support-files
|
|
+.endif
|
|
|
|
# Relink after clean
|
|
CLEANFILES = linked_client_sources
|