diff options
-rwxr-xr-x | distribute.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/distribute.sh b/distribute.sh index 4c1b05d..3293160 100755 --- a/distribute.sh +++ b/distribute.sh @@ -41,6 +41,12 @@ case "$(uname -s)" in cp "$i" "$CONFIG_INSTALL_PREFIX/libs/" done ;; + SunOS) + for i in $(ldd "$CONFIG_BUILD_DIR"/bin/Pong* | awk '/usr\/lib/ {print $3}'); + do + cp "$i" "$CONFIG_INSTALL_PREFIX/libs/" + done + ;; *BSD) # BSDs keep installed packages in /usr/local for i in $(ldd "$CONFIG_BUILD_DIR"/bin/Pong* | awk '/usr\/local/ {print $3}'); |