1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
  
     | 
    
      Description: Remove the modification time check between Makefile.in and Makefile
 As Makefile.in has patches applied in the build process, it will fail without
 this patch in a second build.
Author: Marcos Talau <talau@debian.org>
Last-Update: 2025-02-23
--- ns2-2.35+dfsg.orig/Makefile.in
+++ ns2-2.35+dfsg/Makefile.in
@@ -433,13 +433,6 @@ $(NS): $(OBJ) common/tclAppInit.o common
 
 endif 
 
-
-
-Makefile: Makefile.in
-	@echo "Makefile.in is newer than Makefile."
-	@echo "You need to re-run configure."
-	false
-
 $(NSE): $(OBJ) common/tclAppInit.o common/main-monolithic.o $(OBJ_EMULATE_CC) $(OBJ_EMULATE_C)
 	$(LINK) $(LDFLAGS) $(LDOUT)$@ $^ $(LIB) 
 
 
     |