Hi Ram, > install -p /mine/derot.txt $RPM_BUILD_ROOT/home/dictator/supplies/ShellScripts/mine/derot.txt You try to copy derot.txt from /mine/ instead of from ShellScripts/mine/. You probabls want this line to read install -p ShellScripts/mine/derot.txt $RPM_BUILD_ROOT/home/dictator/supplies/ShellScripts/mine/derot.txt To add the mine directory in your build stage, you should be able to add a mkdir command to your %build section. Hope this helps, Kurt On Thu, Sep 10, 2009 at 12:19:09PM +0530, ram s wrote: > Hello, > > I am creating one rpm for my package. > > WHen I try to run spec file, it shows the sub directories can't be fine. > > Error: > > install: cannot stat `/mine/derot.txt': No such file or directory > error: Bad exit status from /home/user/rpmbuild/tmp/rpm-tmp.XgsNY2 > (%install) > > > Actually in SOURCE, I have Script directory. Inside the ShellScript dir, I > have mine directory and its files. > > my spec %install part is, > %install > > mkdir -p $RPM_BUILD_ROOT/home/dictator/ > mkdir -p $RPM_BUILD_ROOT/home/dictator/supplies > mkdir -p $RPM_BUILD_ROOT/home/dictator/supplies/ShellScripts > mkdir -p $RPM_BUILD_ROOT/home/dictator/supplies/ShellScripts/mine > > install -d ShellScripts $RPM_BUILD_ROOT/home/dictator/supplies/ShellScripts > install -p Scripts/dir_check.sh > $RPM_BUILD_ROOT/home/dictator/supplies/ShellScripts/dir_check.sh > install -d ShellScripts/mine > $RPM_BUILD_ROOT/home/dictator/supplies/ShellScripts/mine > install -p /mine/derot.txt > $RPM_BUILD_ROOT/home/dictator/supplies/ShellScripts/mine/derot.txt > install -p ShellScripts/mine/dir_check.sh > $RPM_BUILD_ROOT/home/dictator/supplies/ShellScripts/mine/dir_check.sh > > In my test-1.tar.gz file, test-1 directory contains ShellScript dir. Inside > ShellScript dir, i created mine directory. > > In build, I am noit able to add mine in my binary. > > How to add directory and subdirectories in binary. > > thank you. > _______________________________________________ > Rpm-list mailing list > Rpm-list@xxxxxxxxxxxxx > http://lists.rpm.org/mailman/listinfo/rpm-list _______________________________________________ Rpm-list mailing list Rpm-list@xxxxxxxxxxxxx http://lists.rpm.org/mailman/listinfo/rpm-list