[pkg-java] r2638 - trunk/eclipse/debian
Matthias Klose
doko at costa.debian.org
Sun Oct 22 11:30:07 UTC 2006
Author: doko
Date: 2006-10-22 11:30:06 +0000 (Sun, 22 Oct 2006)
New Revision: 2638
Modified:
trunk/eclipse/debian/rules
Log:
- fix syntax error
Modified: trunk/eclipse/debian/rules
===================================================================
--- trunk/eclipse/debian/rules 2006-10-22 10:30:49 UTC (rev 2637)
+++ trunk/eclipse/debian/rules 2006-10-22 11:30:06 UTC (rev 2638)
@@ -468,15 +468,15 @@
ifeq ($(with_tomcat),yes)
cat $(EXTRA)/package-links.txt | while read FROM TO; do \
- if [ ! -d $$FROM $(DEBIAN_TMP)/$(ECLIPSE_HOME)/plugins/$$(dirname $$TO) ]; then \
- mkdir -p $$FROM $(DEBIAN_TMP)/$(ECLIPSE_HOME)/plugins/$$(dirname $$TO); \
+ if [ ! -d $(DEBIAN_TMP)/$(ECLIPSE_HOME)/plugins/$$(dirname $$TO) ]; then \
+ mkdir -p $(DEBIAN_TMP)/$(ECLIPSE_HOME)/plugins/$$(dirname $$TO); \
fi; \
ln -sf $$FROM $(DEBIAN_TMP)/$(ECLIPSE_HOME)/plugins/$$TO; \
done
else
cat $(EXTRA)/package-links.txt | grep -v tomcat | while read FROM TO; do \
- if [ ! -d $$FROM $(DEBIAN_TMP)/$(ECLIPSE_HOME)/plugins/$$(dirname $$TO) ]; then \
- mkdir -p $$FROM $(DEBIAN_TMP)/$(ECLIPSE_HOME)/plugins/$$(dirname $$TO); \
+ if [ ! -d $(DEBIAN_TMP)/$(ECLIPSE_HOME)/plugins/$$(dirname $$TO) ]; then \
+ mkdir -p $(DEBIAN_TMP)/$(ECLIPSE_HOME)/plugins/$$(dirname $$TO); \
fi; \
ln -sf $$FROM $(DEBIAN_TMP)/$(ECLIPSE_HOME)/plugins/$$TO; \
done
More information about the pkg-java-commits
mailing list