Originally posted by: SystemAdmin
mkinstallp
does support symbolic links, however the link target must be listed in the template file list
before the symbolic link that points to it.
I get around this problem by issuing a series of "find" commands to build up the file and directory list:
eg something like:
( find <pkg_base> -type d | sort ; find <pkg_base> -type f | sort ; find <pkg_base> -type l | sort ) > raw.filelist
This ensures that you get all your directories, then real files, then symbolic links.
If you do that, mkinstallp will work fine.
#AIX-Forum