From 12010660b102897ee5e1638f86cfacd92709e0ab Mon Sep 17 00:00:00 2001 From: Marc Singer Date: Sat, 31 Mar 2012 12:42:40 -0700 Subject: [PATCH] Issue 49: Debian packageing uses cross-directory hardlinks o install target of rules used a hard link from the usr/share directory to etc. This will be unreliable in many circumstances. Linking changed to a copy. --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index d7d325e..28aebc7 100755 --- a/debian/rules +++ b/debian/rules @@ -27,7 +27,7 @@ override_dh_install: "$(CURDIR)/debian/tmp/etc/shellinabox/options-enabled" for i in "00+Black on White" "00_White On Black" \ "01_Monochrome" "01+Color Terminal"; do \ - ln "$(CURDIR)/debian/tmp/usr/share/doc/shellinabox/$$(echo "$$i"| \ + cp "$(CURDIR)/debian/tmp/usr/share/doc/shellinabox/$$(echo "$$i"| \ sed -e 's/[0-9]*[_+]\([^ ]*\).*/\1/'| \ tr A-Z a-z)"*.css \ "$(CURDIR)/debian/tmp/etc/shellinabox/options-available/$$i.css";\