r4747 - trunk/src/host/opkg-utils

tick at docs.openmoko.org tick at docs.openmoko.org
Mon Nov 3 04:59:59 CET 2008


Author: tick
Date: 2008-11-03 04:59:59 +0100 (Mon, 03 Nov 2008)
New Revision: 4747

Modified:
   trunk/src/host/opkg-utils/Makefile
Log:
[opkg-utils] fix install fail problem 
 Thanks for khorben's patch :-)
 https://docs.openmoko.org/trac/attachment/ticket/2072/patch-opkg-utils_Makefile_install_path.diff



Modified: trunk/src/host/opkg-utils/Makefile
===================================================================
--- trunk/src/host/opkg-utils/Makefile	2008-11-03 02:07:31 UTC (rev 4746)
+++ trunk/src/host/opkg-utils/Makefile	2008-11-03 03:59:59 UTC (rev 4747)
@@ -4,7 +4,7 @@
 
 DESTDIR=
 PREFIX=/usr/local
-bindir=${prefix}/bin
+bindir=$(PREFIX)/bin
 
 all: opkg-compare-versions
 
@@ -13,7 +13,7 @@
 
 install: opkg-compare-versions
 	install -d $(DESTDIR)$(bindir)
-	install -m 744 $(UTILS) $(DESTDIR)$(bindir)
+	install -m 755 $(UTILS) $(DESTDIR)$(bindir)
 
 clean:
 	rm -rf opkg-compare-versions




More information about the commitlog mailing list