[Pkg-sql-ledger-commit] r106 - in trunk/debian: . patches

pkg-sql-ledger-discusssion at lists.alioth.debian.org pkg-sql-ledger-discusssion at lists.alioth.debian.org
Mon Jan 9 22:19:02 UTC 2006


Author: hertzog
Date: 2006-01-09 22:19:01 +0000 (Mon, 09 Jan 2006)
New Revision: 106

Modified:
   trunk/debian/TODO
   trunk/debian/changelog
   trunk/debian/patches/10makefiles.dpatch
Log:
Use hardlinks instead of symlinks.


Modified: trunk/debian/TODO
===================================================================
--- trunk/debian/TODO	2006-01-09 08:26:56 UTC (rev 105)
+++ trunk/debian/TODO	2006-01-09 22:19:01 UTC (rev 106)
@@ -2,6 +2,9 @@
 - postinst doesn't handle well apache2. It tries to create /etc/apache/httpd.conf 
   => Make use of "wwwconfig-common" to be nicer about apache configuration ?
 
+1/ Install everything below /usr/share/sql-ledger/ instead of
+/usr/lib/sql-ledger/.
+
 1/ Improve README.Debian to provide reliable secure instructions.
 
 2/ Automatize as much as possible:

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2006-01-09 08:26:56 UTC (rev 105)
+++ trunk/debian/changelog	2006-01-09 22:19:01 UTC (rev 106)
@@ -5,6 +5,8 @@
     debian/patches/10makefiles.patch.
   * Added all files from the doc directory except COPYING and COPYRIGHT.
     This includes in particular the various "UPGRADE-*" files.
+  * Use hardlinks instead of symlinks. This is better for suExec
+    compatibility (on advice from the author).
 
  -- Raphael Hertzog <hertzog at debian.org>  Mon,  9 Jan 2006 07:38:30 +0000
 

Modified: trunk/debian/patches/10makefiles.dpatch
===================================================================
--- trunk/debian/patches/10makefiles.dpatch	2006-01-09 08:26:56 UTC (rev 105)
+++ trunk/debian/patches/10makefiles.dpatch	2006-01-09 22:19:01 UTC (rev 106)
@@ -41,7 +41,7 @@
 +
 +	cd $(DESTDIR)/usr/lib/sql-ledger ; \
 +	for module in $(MODULES) ; do \
-+	  (cd bin/lynx ; ln -sf ../mozilla/$$module) ;\
++	  (cd bin/lynx ; ln -f ../mozilla/$$module) ;\
 +	done ;
 --- sql-ledger-2.2.6.orig/doc/Makefile
 +++ sql-ledger-2.2.6/doc/Makefile
@@ -207,9 +207,9 @@
 +	cp $(SHR_FILES) $(DESTDIR)/usr/share/sql-ledger
 +
 +	cd $(DESTDIR)/usr/lib/sql-ledger ; \
-+	ln -sf login.pl admin.pl ; \
++	ln -f login.pl admin.pl ; \
 +	set -e ; for module in $(MODULES) ; do \
-+	  ln -s am.pl $$module ; \
++	  ln am.pl $$module ; \
 +	done ; \
 +	ln -sf /etc/sql-ledger/sql-ledger.conf 
 +




More information about the Pkg-sql-ledger-commit mailing list