|
|
|
@ -2,6 +2,7 @@
|
|
|
|
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
|
|
|
#
|
|
|
|
|
# Filename: package/.../newt/deplist-fix.patch
|
|
|
|
|
# Copyright (C) 2008 The OpenSDE Project
|
|
|
|
|
# Copyright (C) 2004 - 2006 The T2 SDE Project
|
|
|
|
|
#
|
|
|
|
|
# More information can be found in the files COPYING and README.
|
|
|
|
@ -13,17 +14,17 @@
|
|
|
|
|
# Foundation; either version 2 of the License, or (at your option) any later
|
|
|
|
|
# version.
|
|
|
|
|
# --- SDE-COPYRIGHT-NOTE-END ---
|
|
|
|
|
diff -Nur newt-0.51.6.orig/Makefile.in newt-0.51.6/Makefile.in
|
|
|
|
|
--- newt-0.51.6.orig/Makefile.in 2003-01-04 21:15:25.000000000 +0200
|
|
|
|
|
+++ newt-0.51.6/Makefile.in 2005-09-15 22:15:33.000000000 +0300
|
|
|
|
|
@@ -95,7 +95,9 @@
|
|
|
|
|
$(SHAREDOBJS) *.so*
|
|
|
|
|
|
|
|
|
|
--- ./Makefile.in.orig 2007-03-02 09:00:51.000000000 -0300
|
|
|
|
|
+++ ./Makefile.in 2008-08-19 18:02:55.000000000 -0400
|
|
|
|
|
@@ -94,7 +94,9 @@
|
|
|
|
|
$(SHAREDDIR)/*.o *.so*
|
|
|
|
|
|
|
|
|
|
depend:
|
|
|
|
|
- $(CPP) $(CFLAGS) -M $(SOURCES) > .depend
|
|
|
|
|
+ rm -f .depend; for i in $(SOURCES); do \
|
|
|
|
|
+ $(CPP) $(CFLAGS) -M $$i >> .depend; \
|
|
|
|
|
+ done
|
|
|
|
|
- $(CPP) $(CFLAGS) $(CPPFLAGS) -M $(SOURCES) > .depend
|
|
|
|
|
+ for i in $(SOURCES); do \
|
|
|
|
|
+ $(CPP) $(CFLAGS) $(CPPFLAGS) -M $$i; \
|
|
|
|
|
+ done > .depend
|
|
|
|
|
|
|
|
|
|
$(SHAREDDIR):
|
|
|
|
|
mkdir -p $(SHAREDDIR)
|
|
|
|
|