diff options
-rwxr-xr-x | distribute.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/distribute.sh b/distribute.sh index 2700fac..ba70f0e 100755 --- a/distribute.sh +++ b/distribute.sh @@ -35,6 +35,12 @@ case "$(uname -s)" in cp "$i" "$CONFIG_INSTALL_PREFIX/libs/" done ;; + OpenBSD) + for i in $(ldd "$CONFIG_BUILD_DIR"/bin/Pong* | awk '/usr\/local/ {print $7}'); + 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}'); |