Github user denalex commented on a diff in the pull request:
https://github.com/apache/incubator-hawq/pull/1296#discussion_r142996721
--- Diff: pxf/build.gradle ---
@@ -339,6 +339,18 @@ project('pxf') {
link('/etc/pxf', "/etc/pxf-${project.version}")
link('/opt/pxf', "/opt/pxf-${project.version}")
link('/etc/init.d/pxf-service', "/opt/pxf/pxf-service")
+
+ from('../resources/META-INF/DISCLAIMER') {
+ into "/opt/pxf-${project.version}"
+ }
+
+ from('../resources/META-INF/LICENSE') {
+ into "/opt/pxf-${project.version}"
+ }
+
+ from('../resources/META-INF/NOTICE') {
+ into "..//opt/pxf-${project.version}"
--- End diff --
why is this line different from the others above ?
---