Github user ceharris commented on a diff in the pull request:
https://github.com/apache/guacamole-server/pull/126#discussion_r155231763
--- Diff: src/guacd-docker/bin/build-guacd.sh ---
@@ -28,35 +28,22 @@
## The directory which currently contains the guacamole-server source
and
## in which the build should be performed.
##
+## @param PREFIX_DIR
+## The directory prefix into which the build artifacts should be
installed
+## in which the build should be performed. This is passed to the
--prefix
+## option of `configure`.
+##
BUILD_DIR="$1"
-
-##
-## Locates the directory in which the FreeRDP libraries (.so files) are
-## located, printing the result to STDOUT.
-##
-where_is_freerdp() {
- dirname `rpm -ql freerdp-libs | grep 'libfreerdp.*\.so' | head -n1`
-}
--- End diff --
This is now done in the second build stage.
---