]> git.donarmstrong.com Git - roundcube.git/commitdiff
Fixed FTBFS
authorRomain Beauxis <toots@rastageeks.org>
Mon, 14 May 2007 12:22:59 +0000 (12:22 +0000)
committerJérémy Bobbio <lunar@debian.org>
Sat, 18 Jun 2011 16:27:23 +0000 (18:27 +0200)
debian/changelog
debian/rules

index e7230af51d16d8169ff908df06ff4a0f6ff0b36e..65b237dc44e1537a1d02145b26dcda1a6eae72ed 100644 (file)
@@ -1,3 +1,10 @@
+roundcube (0.1~beta2.2~dfsg-3) unstable; urgency=low
+
+  * Fixed dh_link calls
+  Closes: #423824
+
+ -- Romain Beauxis <toots@rastageeks.org>  Mon, 14 May 2007 14:20:55 +0200
+
 roundcube (0.1~beta2.2~dfsg-2) unstable; urgency=low
 
   * Fix a security issue by disallowing access to logs.
index 61bb9ec6a4375236fa291dde9a5c8fbd434e9ca9..45303c3a218ca87b00ed73f0acb618f50b15fd8d 100755 (executable)
@@ -18,8 +18,10 @@ binary-install/roundcube::
        # Symlink all that is in /usr/share/roundcube to /var/lib/roundcube
        find debian/roundcube/usr/share/roundcube -maxdepth 1 -mindepth 1 | \
        while read i; do \
-               dh_link "`echo "$$i" | sed -e s#debian/roundcube/##`" \
-               "`echo "$$i" | sed -e s#debian/roundcube/usr/share/roundcube/#var/lib/roundcube/#`"; \
+               if [ ! -L "$$i" ]; then \
+                 dh_link "`echo "$$i" | sed -e s#debian/roundcube/##`" \
+                 "`echo "$$i" | sed -e s#debian/roundcube/usr/share/roundcube/#var/lib/roundcube/#`"; \
+               fi \
        done
        # Install config/db.inc.php.dist
        install -m 0640 $(CURDIR)/config/db.inc.php.dist $(CURDIR)/debian/roundcube/etc/roundcube/db.inc.php