From 6d0b84fb495e1722ca9896c66d541b1524a20d2b Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Tue, 29 Oct 2013 22:45:47 -0400 Subject: debian/rules: Fix unpack-orig-source. Ignore .git/ and fix "debian/" test. --- diff --git a/debian/rules b/debian/rules index dd4e3d9..a1389cf 100755 --- a/debian/rules +++ b/debian/rules @@ -38,6 +38,7 @@ unpack-orig-source: get-orig-source # Remove currently unpacked source. for f in * .[!.] .??*; do \ if [ -e $${f} ] && [ $${f} != debian ] && \ + [ $${f} != .git ] && \ [ $${f} != .gitignore ]; then \ rm -Rf $${f}; \ fi; \ @@ -52,7 +53,8 @@ unpack-orig-source: get-orig-source # into the top-level directory. set -e; \ for f in */ .[!.]/ .??*/; do \ - if [ -d $${f} ] && [ $${f} != debian ]; then \ + if [ -d $${f} ] && [ $${f} != debian/ ] && [ $${f} != .git/ ]; \ + then \ for ff in $${f}/* $${f}/.[!.] $${f}/.??*; do \ if [ -e $${ff} ]; then \ mv $${ff} .; \ -- cgit v0.9.1