[uClibc-cvs] svn commit: trunk/buildroot/package/bash

sjhill at uclibc.org sjhill at uclibc.org
Sat Apr 23 17:45:18 UTC 2005


Author: sjhill
Date: 2005-04-23 11:45:18 -0600 (Sat, 23 Apr 2005)
New Revision: 10168

Log:
Fix install error caused by 'ln -sf' which tries to use the target's
'ln' instead of the host. A quick grep through the other packages
shows that this may be an issue as well. I will probably have more
fixes later today.


Modified:
   trunk/buildroot/package/bash/bash.mk


Changeset:
Modified: trunk/buildroot/package/bash/bash.mk
===================================================================
--- trunk/buildroot/package/bash/bash.mk	2005-04-23 16:54:05 UTC (rev 10167)
+++ trunk/buildroot/package/bash/bash.mk	2005-04-23 17:45:18 UTC (rev 10168)
@@ -59,7 +59,7 @@
 	$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(BASH_DIR) install
 	rm -f $(TARGET_DIR)/bin/bash*
 	mv $(TARGET_DIR)/usr/bin/bash* $(TARGET_DIR)/bin/
-	(cd $(TARGET_DIR)/bin; ln -fs bash sh)
+	(cd $(TARGET_DIR)/bin; /bin/ln -fs bash sh)
 	rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \
 		$(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
 




More information about the uClibc-cvs mailing list