[Pkg-kde-commits] rev 2049 - in branches/kde-3.4.0/packages/kdebindings/debian: . patches

Adeodato Simó adeodato at costa.debian.org
Wed Oct 19 22:14:16 UTC 2005


Author: adeodato
Date: 2005-10-19 22:14:15 +0000 (Wed, 19 Oct 2005)
New Revision: 2049

Modified:
   branches/kde-3.4.0/packages/kdebindings/debian/changelog
   branches/kde-3.4.0/packages/kdebindings/debian/patches/030-koala-makefile-too-much-arguments.diff
Log:
Further improve 030-koala-makefile-too-much-arguments.diff to do test -n
"$<" instead of "$?", to avoid new "Argument list too long" errors.



Modified: branches/kde-3.4.0/packages/kdebindings/debian/changelog
===================================================================
--- branches/kde-3.4.0/packages/kdebindings/debian/changelog	2005-10-19 22:13:39 UTC (rev 2048)
+++ branches/kde-3.4.0/packages/kdebindings/debian/changelog	2005-10-19 22:14:15 UTC (rev 2049)
@@ -18,6 +18,9 @@
     Introduce a wilcard in the .install file, and don't pass a hardcoded path
     to ./configure.
 
+  * Further improve 030-koala-makefile-too-much-arguments.diff to do test -n
+    "$<" instead of "$?", to avoid new "Argument list too long" errors.
+
   * Install python-dcop examples. (Closes: #303654)
 
   * CDBSized debian/rules, to match the rest of KDE packages.

Modified: branches/kde-3.4.0/packages/kdebindings/debian/patches/030-koala-makefile-too-much-arguments.diff
===================================================================
--- branches/kde-3.4.0/packages/kdebindings/debian/patches/030-koala-makefile-too-much-arguments.diff	2005-10-19 22:13:39 UTC (rev 2048)
+++ branches/kde-3.4.0/packages/kdebindings/debian/patches/030-koala-makefile-too-much-arguments.diff	2005-10-19 22:14:15 UTC (rev 2049)
@@ -6,7 +6,7 @@
  classnoinst.stamp: $(noinst_JAVA)
 -	@if test -n "$?"; then \
 -	  echo '$(CLASSPATH_ENV) $(JAVAC) -d $(JAVAROOT) $(AM_JAVACFLAGS) $(JAVACFLAGS) $?' ; \
-+	if test -n "$?"; then \
++	if test -n "$<"; then \
  	  $(CLASSPATH_ENV) $(JAVAC) -d $(JAVAROOT) \
  	    $(AM_JAVACFLAGS) $(JAVACFLAGS) $?; \
  	else :; fi
@@ -18,7 +18,7 @@
  classnoinst.stamp: $(noinst_JAVA)
 -	@if test -n "$?"; then \
 -	  echo '$(CLASSPATH_ENV) $(JAVAC) -d $(JAVAROOT) $(AM_JAVACFLAGS) $(JAVACFLAGS) $?' ; \
-+	if test -n "$?"; then \
++	if test -n "$<"; then \
  	  $(CLASSPATH_ENV) $(JAVAC) -d $(JAVAROOT) \
  	    $(AM_JAVACFLAGS) $(JAVACFLAGS) $?; \
  	else :; fi




More information about the pkg-kde-commits mailing list