If patches are applied on ptxdist itself with quilt during development
of ptxdist then 'make install' of ptxdist will complain about unreadable .pc
directories. So, .pc directories need to be excluded as well while tarring
the tree to the destination directory.
Signed-off-by: Remy Bohmer <[EMAIL PROTECTED]>
---
Makefile.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: ptxdist-1.99.4/Makefile.in
===================================================================
--- ptxdist-1.99.4.orig/Makefile.in 2008-01-09 22:36:12.000000000 +0100
+++ ptxdist-1.99.4/Makefile.in 2008-08-05 10:17:06.000000000 +0200
@@ -26,7 +26,7 @@ install: all
@test -d ${DESTDIR}${instdir} || exit 1
@touch ${DESTDIR}${instdir} || exit 1
@echo "installing PTXdist to ${DESTDIR}${prefix}/bin..."
- tar -C ${abs_srcdir} -cf - --exclude .svn --exclude state --exclude
debian . | tar -C ${DESTDIR}${instdir} -xvf -
+ tar -C ${abs_srcdir} -cf - --exclude .svn --exclude state --exclude
debian --exclude .pc . | tar -C ${DESTDIR}${instdir} -xvf -
@mkdir -p ${DESTDIR}${prefix}/bin
@rm -f ${DESTDIR}${prefix}/bin/ptxdist
@ln -sf ${instdir}/bin/ptxdist
${DESTDIR}${prefix}/bin/ptxdist-${version}
--
--
ptxdist mailing list
[email protected]