package: ypsilon
severity: serious
tags: patch

ypsilon fails to build from source if the homedir doesn't exist and can't be created. This happened on the i386 buildd with the latest version.

Patch is attatched.

Only in ypsilon-0.9.6.update3/build-win32: Release
diff -ur ypsilon-0.9.6.update3/debian/rules ypsilon-0.9.6.update3.new/debian/rules
--- ypsilon-0.9.6.update3/debian/rules	2009-07-16 22:27:41.000000000 +0100
+++ ypsilon-0.9.6.update3.new/debian/rules	2009-07-16 22:25:09.000000000 +0100
@@ -2,14 +2,18 @@
 
 include /usr/share/quilt/quilt.make
 
+export HOME :=$(PWD)/debian/fakehome
+
 build: patch build-stamp
 build-stamp:
+	mkdir debian/fakehome
 	dh build --before dh_auto_build
 	make PREFIX=/usr
 	dh build --after dh_auto_build
 	touch build-stamp
 
 clean: unpatch
+	rm -rf debian/fakehome
 	dh clean
 
 install: build install-stamp

Reply via email to