On Wednesday 03 August 2005 08:12 PM, Tomas Davidek wrote:

Yes, this is exactly the problem - the *.orig.tar.gz should be unpacked, but apparently it is not. When I have in my makefile:
.....
install:
         cp -a usr $(DESTDIR)/usr
.....
it fails with the error message:
--------------
# Add here commands to install the package into debian/ucjf-security.
/usr/bin/make install DESTDIR=/home/davidek/debian/ucjf-security-1.0.2/debian/ucjf-security
make[1]: Entering directory `/home/davidek/debian/ucjf-security-1.0.2'
cp -a usr /home/davidek/debian/ucjf-security-1.0.2/debian/ucjf-security/usr
cp: cannot stat `usr': No such file or directory
make[1]: *** [install] Error 1
make[1]: Leaving directory `/home/davidek/debian/ucjf-security-1.0.2'
make: *** [install] Error 2
---------

Its clearly mentioned in the New Maintainers' guide that you have to
create the directory in your Makefile as 'usr' directory will already
exsit on your system.Since you are installing it in your them directory
i.e debian/ucjf-security.Just add any one of these lines:

install -d $(DESTDIR)/usr
or
mkdir $(DESTDIR)/usr

it will work fine.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to