Commit 93a095da authored by Holger Levsen's avatar Holger Levsen
Browse files

fixup 88ff3aaf: reproducible Debian: add support for common-$DPKG_ARCH files

parent 9034f91b
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -555,7 +555,11 @@ for h in common common-amd64 common-i386 common-arm64 common-armhf "$HOSTNAME" ;
	fi
	for d in etc usr ; do
		if [ -d "hosts/$h/$d" ]; then
			sudo cp --preserve=mode,timestamps -r "hosts/$h/$d/"* "/$d"
			for sd in * ; do
				if [ -d "hosts/$h/$d/$sd" ]; then
					sudo cp --preserve=mode,timestamps -r "hosts/$h/$d/$sd" "/$d"
				fi
			done
		fi
	done
done