[med-svn] r12380 - trunk/packages/orthanc/trunk/debian

Sebastien Jodogne jodogne-guest at alioth.debian.org
Thu Oct 11 08:43:33 UTC 2012


Author: jodogne-guest
Date: 2012-10-11 08:43:33 +0000 (Thu, 11 Oct 2012)
New Revision: 12380

Modified:
   trunk/packages/orthanc/trunk/debian/rules
Log:
fix of case

Modified: trunk/packages/orthanc/trunk/debian/rules
===================================================================
--- trunk/packages/orthanc/trunk/debian/rules	2012-10-11 08:23:40 UTC (rev 12379)
+++ trunk/packages/orthanc/trunk/debian/rules	2012-10-11 08:43:33 UTC (rev 12380)
@@ -4,6 +4,16 @@
 	dh $@ --parallel --builddirectory=Build
 
 override_dh_auto_configure:
+	# This fixes an error in the case of two filenames
+	if [ -f $(CURDIR)/OrthancExplorer/libs/jquery.blockUI.js ]; then \
+		mv $(CURDIR)/OrthancExplorer/libs/jquery.blockUI.js \
+		$(CURDIR)/OrthancExplorer/libs/jquery.blockui.js; \
+	fi
+	if [ -f $(CURDIR)/OrthancExplorer/images/Unsupported.png ]; then \
+		mv $(CURDIR)/OrthancExplorer/images/Unsupported.png \
+		$(CURDIR)/OrthancExplorer/images/unsupported.png; \
+	fi
+
 	# Put 3rd party packages where the cmake build system expects them
 	mkdir -p ThirdPartyDownloads
 	( cd ThirdPartyDownloads; cp ../debian/ThirdPartyDownloads/* . )




More information about the debian-med-commit mailing list