[CalendarServer-changes] [14390] CalendarServer/trunk/bin/package

source_changes at macosforge.org source_changes at macosforge.org
Mon Feb 9 16:31:45 PST 2015


Revision: 14390
          http://trac.calendarserver.org//changeset/14390
Author:   wsanchez at apple.com
Date:     2015-02-09 16:31:45 -0800 (Mon, 09 Feb 2015)
Log Message:
-----------
Add some more links to executables.

Modified Paths:
--------------
    CalendarServer/trunk/bin/package

Modified: CalendarServer/trunk/bin/package
===================================================================
--- CalendarServer/trunk/bin/package	2015-02-09 21:59:10 UTC (rev 14389)
+++ CalendarServer/trunk/bin/package	2015-02-10 00:31:45 UTC (rev 14390)
@@ -115,13 +115,24 @@
 
   install -d "${destination}/bin";
 
-  (
-    cd "${destination}/bin" && \
-      find ../virtualenv/bin \
-        '(' -name 'caldavd' -o -name 'calendarserver_*' -o -name 'python' ')' \
-        -exec ln -fs '{}' . ';';
-  );
+  cd "${destination}/bin";
 
+  find ../virtualenv/bin                                                   \
+    '(' -name 'caldavd' -o -name 'calendarserver_*' -o -name 'python' ')'  \
+    -exec ln -fs '{}' . ';'                                                \
+  ;
+
+  for executable in              \
+    "memcached/bin/memcached"    \
+    "openssl/bin/openssl"        \
+    "PostgreSQL/bin/psql"        \
+    "PostgreSQL/bin/pg_dump"     \
+    "PostgreSQL/bin/pg_dumpall"  \
+    "PostgreSQL/bin/pg_restore"  \
+  ; do
+    ln -s "../roots/${executable}" .;
+  done;
+
 }
 
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20150209/c445a363/attachment.html>


More information about the calendarserver-changes mailing list