ptxdist: warning: PKG didn't install anything to '/home/myapp/mylinux/platform/packages/myapp'
*** Warning: The following files have a UID greater than 99.
You probably want to chown these to a system user:
dr-xr-x--- 2 mylinux mylinux 4096 May 1 2015 ./opt/myappsw/myapp
-r-xr-x--- 1 mylinux mylinux 30640 May 1 2015 ./opt/myappsw/myapp/myapp
In my rules file it is:
# create app folder with the correct ownership and flags
@$(call install_copy, myapp, 1000, 1000, 0550, /opt/myappsw/myapp)
# copy binary
@$(call install_copy, myapp, 1000, 1000, 0550, $(MYAPP_DIR)/bin/myapp, /opt/myappsw/myapp/myapp)
It is not allowing to complete the package install
Thank You
*** Warning: The following files have a UID greater than 99.
You probably want to chown these to a system user:
dr-xr-x--- 2 mylinux mylinux 4096 May 1 2015 ./opt/myappsw/myapp
-r-xr-x--- 1 mylinux mylinux 30640 May 1 2015 ./opt/myappsw/myapp/myapp
In my rules file it is:
# create app folder with the correct ownership and flags
@$(call install_copy, myapp, 1000, 1000, 0550, /opt/myappsw/myapp)
# copy binary
@$(call install_copy, myapp, 1000, 1000, 0550, $(MYAPP_DIR)/bin/myapp, /opt/myappsw/myapp/myapp)
It is not allowing to complete the package install
Thank You