components/coreutils/Makefile
changeset 104 df794b4aa5dc
parent 100 385905d9554d
child 181 87e11e685b1f
--- a/components/coreutils/Makefile	Thu Feb 24 02:24:02 2011 -0800
+++ b/components/coreutils/Makefile	Thu Feb 24 10:32:52 2011 -0800
@@ -56,6 +56,10 @@
 NEEDMV=if [ -e $(1) ]; then $(RM) $(2); /usr/bin/mv $(1) $(2); fi
 RMDIR=/usr/bin/rmdir
 
+#
+# whoami is in both /usr/bin and /usr/gnu/bin; mistake?
+#
+
 install:	$(PROTOUSRBINDIR) $(PROTOUSRSHAREMAN1DIR) $(INSTALL_32)
 	for command in $(CMDS_NONCONFLICTING); do \
 		$(call NEEDMV,$(PROTOGNUBIN)/$$command,\
@@ -69,9 +73,6 @@
 		$(call NEEDMV,$(PROTOGNUSHAREMAN1)/$$manpage,\
 			$(PROTOUSRSHAREMAN1DIR)/$$manpage); \
 	done
-	#
-	# whoami is in both /usr/bin and /usr/gnu/bin; mistake?
-	#
 	$(CP) $(PROTOUSRBINDIR)/whoami $(PROTOGNUBIN)/whoami
 	$(CP) $(PROTOUSRSHAREMAN1DIR)/whoami.1 $(PROTOGNUSHAREMAN1)/whoami.1
 	$(call NEEDMV,$(PROTOGNUBIN)/install,$(PROTOUSRBINDIR)/ginstall)