gettext was using Build/Install, while we can do this in Build/Compile (#4063)
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 4 Oct 2008 16:32:35 +0000 (16:32 +0000)
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 4 Oct 2008 16:32:35 +0000 (16:32 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@12853 3c298f89-4303-0410-b956-a3cf2f4a3e73

libs/gettext/Makefile

index c01303f..aaaf9dc 100644 (file)
@@ -43,11 +43,9 @@ CONFIGURE_ARGS += \
        --without-emacs
 
 define Build/Compile
-       $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" all
-endef
-
-define Build/Install
-       $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" install
+       $(MAKE) -C $(PKG_BUILD_DIR) \
+               DESTDIR="$(PKG_INSTALL_DIR)" \
+               all install
 endef
 
 define Build/InstallDev