View Issue Details

IDProjectCategoryView StatusLast Update
0000470LDMud 3.3Compilation, Installationpublic2008-07-09 10:11
Reporterfufu Assigned Tofufu  
PrioritynormalSeveritytrivialReproducibilityalways
Status resolvedResolutionfixed 
Fixed in Version3.3.717 
Summary0000470: make install prints duplicate messages at end
Descriptionto reproduce

$ make install
[...]
echo "To install header files, use 'make install-headers'."
To install header files, use 'make install-headers'.
echo "To install utility programs (incl. erq), use 'make install-utils'."
To install utility programs (incl. erq), use 'make install-utils'.
echo "To install everything in one go, use 'make install-all'."
To install everything in one go, use 'make install-all'.
$
Additional Informationpatch attached
TagsNo tags attached.

Activities

2006-06-05 12:17

 

clean_makefile.diff (749 bytes)   
Index: Makefile.in
===================================================================
--- Makefile.in	(revision 2303)
+++ Makefile.in	(working copy)
@@ -121,9 +121,9 @@
 install-all: install-driver install-headers install-utils
 
 install: install-driver
-	echo "To install header files, use 'make install-headers'."
-	echo "To install utility programs (incl. erq), use 'make install-utils'."
-	echo "To install everything in one go, use 'make install-all'."
+	@echo "To install header files, use 'make install-headers'."
+	@echo "To install utility programs (incl. erq), use 'make install-utils'."
+	@echo "To install everything in one go, use 'make install-all'."
 
 install-driver: ldmud@EXEEXT@ docs
 	$(mkinstalldirs) $(BINDIR) $(MANDIR)/man1
clean_makefile.diff (749 bytes)   

fufu

2008-07-09 09:09

manager   ~0000700

fixed in SVN 2376

Issue History

Date Modified Username Field Change
2006-06-05 12:17 fufu New Issue
2006-06-05 12:17 fufu File Added: clean_makefile.diff
2008-07-02 04:28 fufu Status new => assigned
2008-07-02 04:28 fufu Assigned To => fufu
2008-07-09 09:09 fufu Status assigned => resolved
2008-07-09 09:09 fufu Resolution open => fixed
2008-07-09 09:09 fufu Note Added: 0000700
2008-07-09 10:11 fufu Fixed in Version => 3.3.717