[pisa-src] r1881 - trunk/openwrt/package/pisa/Makefile

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Fri, 27 Nov 2009 19:11:22 +0100

Author: biurrun
Date: Fri Nov 27 19:11:22 2009
New Revision: 1881

Log:
Do not set INSTALL variable during 'make install'.
The -c option to install is ignored anyway, there is no point in using it.

Modified:
   trunk/openwrt/package/pisa/Makefile

Modified: trunk/openwrt/package/pisa/Makefile
==============================================================================
--- trunk/openwrt/package/pisa/Makefile Fri Nov 27 19:06:03 2009        (r1880)
+++ trunk/openwrt/package/pisa/Makefile Fri Nov 27 19:11:22 2009        (r1881)
@@ -37,7 +37,7 @@
 define Build/Compile
        $(MAKE) -C $(PKG_BUILD_DIR);
 
-       $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" 
INSTALL="install -c" install
+       $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" install
 endef
 
 define Package/libpisa

Other related posts:

  • » [pisa-src] r1881 - trunk/openwrt/package/pisa/Makefile - Diego Biurrun