>> I an on my first attempt at building a binary rpm and I have a couple >> of questions. >> >> 1) The spec's %files section has something similar to this: >> >> %files >> %attr(X,Y,Z) /app/foo >> %atrr(A,B,C) /app/foo/bar >> > >If you list a directory path rpm will add everything under that dir: > >I think you want to add the dir as just a dir - > >%dir %attr(X,Y,Z) /app/foo >%atrr(A,B,C) /app/foo/bar This worked, thanks. The rpm manual I used fooled me by saying that when the %dir directive states that the directory is empty...