[Pkg-ocaml-maint-commits] r1374 - trunk/packages/unison/branches/sarge/debian

Sylvain LE GALL gildor-guest@costa.debian.org
Thu, 12 May 2005 22:06:55 +0000


Author: gildor-guest
Date: 2005-05-12 22:06:55 +0000 (Thu, 12 May 2005)
New Revision: 1374

Modified:
   trunk/packages/unison/branches/sarge/debian/changelog
   trunk/packages/unison/branches/sarge/debian/rules
Log:
Correct bad behavior of unison when generating manual -- SLG


Modified: trunk/packages/unison/branches/sarge/debian/changelog
===================================================================
--- trunk/packages/unison/branches/sarge/debian/changelog	2005-05-12 21:57:26 UTC (rev 1373)
+++ trunk/packages/unison/branches/sarge/debian/changelog	2005-05-12 22:06:55 UTC (rev 1374)
@@ -1,3 +1,11 @@
+unison (2.9.1-2sarge2) testing-proposed-updates; urgency=high
+
+  * Unison doesn't read/write on $HOME/.unison, it is only a hack used in
+    Fspath.canonizeFspath and called from Os.unisonDir. Set the HOME variable
+    before generating to be $(CURDIR) in debian/rules (Closes:#308773)
+
+ -- Sylvain Le Gall <sylvain.le-gall@polytechnique.org>  Thu, 12 May 2005 22:11:30 +0200
+
 unison (2.9.1-2sarge1) testing-proposed-updates; urgency=high
 
   * Release made by sponsor (Robert McQueen) and reviewed by maintainer

Modified: trunk/packages/unison/branches/sarge/debian/rules
===================================================================
--- trunk/packages/unison/branches/sarge/debian/rules	2005-05-12 21:57:26 UTC (rev 1373)
+++ trunk/packages/unison/branches/sarge/debian/rules	2005-05-12 22:06:55 UTC (rev 1374)
@@ -18,7 +18,7 @@
 	$(MAKE) UISTYLE=gtk NATIVE=$(NATIVE) DEBUGGING=$(NATIVE)
 	mv unison unison-gtk
 	$(MAKE) UISTYLE=text NATIVE=$(NATIVE) DEBUGGING=$(NATIVE)
-	$(CURDIR)/unison -doc all > $(CURDIR)/unison-manual.txt
+	env HOME=$(CURDIR) $(CURDIR)/unison -doc all > $(CURDIR)/unison-manual.txt
 
 #	remove the chrpath of unison-gtk
 	if [ "$(NATIVE)" = "true" ]; then       \