From: Jose V Beneyto Date: Tue, 9 Mar 2010 07:57:40 +0000 (+0100) Subject: added pkgadd/pkginfo symlinks to avoid using host binaries before cross-binaries X-Git-Url: http://gitweb/?a=commitdiff_plain;h=ec36cbc49b66a2428315eb1d07b207e41082d997;p=pkgutils-cross.git added pkgadd/pkginfo symlinks to avoid using host binaries before cross-binaries --- diff --git a/Makefile b/Makefile index 81a024c..29d6927 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # Makefile # -all: src/pkgmk.conf src/pkgmk +all: src/pkgmk.conf src/pkgmk pkginfo pkgadd src/pkgmk: @if grep -e ubuntu /proc/version >/dev/null; then \ @@ -12,8 +12,15 @@ src/pkgmk: fi @chmod a+x src/pkgmk +pkginfo: + @ln -s src/pkgadd pkginfo + +pkgadd: + @ln -s src/pkgadd pkgadd + clean: @make -C src clean + @rm -f pkginfo pkgadd distclean: @make -C src distclean