From: Nicolas Thill Date: Tue, 24 May 2005 00:46:13 +0000 (+0000) Subject: Fix typos in unstall-dev X-Git-Tag: reboot~32682 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f97bff36e4d5135387227d2305741a00a7cef71e;hp=6d555f7cc6fb12387a5fff090f0e12e6c4993c1d;p=oweals%2Fopenwrt.git Fix typos in unstall-dev SVN-Revision: 1040 --- diff --git a/openwrt/package/ncurses/Makefile b/openwrt/package/ncurses/Makefile index 1bab2d9655..5139a5a4ac 100644 --- a/openwrt/package/ncurses/Makefile +++ b/openwrt/package/ncurses/Makefile @@ -103,18 +103,19 @@ $(STAGING_DIR)/usr/lib/libncurses.so: $(PKG_BUILD_DIR)/.built mkdir -p $(STAGING_DIR)/usr/lib cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libcurses.so $(STAGING_DIR)/usr/lib/ cp -fpR $(PKG_INSTALL_DIR)/usr/lib/lib{ncurses,panel}.{a,so*} $(STAGING_DIR)/usr/lib/ + touch $@ install-dev: $(STAGING_DIR)/usr/lib/libncurses.so uninstall-dev: rm -rf \ - $(PKG_INSTALL_DIR)/usr/include/curses.h \ - $(PKG_INSTALL_DIR)/usr/include/{ncurses,panel}.h \ - $(PKG_INSTALL_DIR)/usr/include/panel.h \ - $(PKG_INSTALL_DIR)/usr/include/term{,cap}.h \ - $(PKG_INSTALL_DIR)/usr/include/unctrl.h \ - $(PKG_INSTALL_DIR)/usr/lib/libcurses.so \ - $(PKG_INSTALL_DIR)/usr/lib/lib{ncurses,panel}.{a,so*} \ + $(STAGING_DIR)/usr/include/curses.h \ + $(STAGING_DIR)/usr/include/{ncurses,panel}.h \ + $(STAGING_DIR)/usr/include/panel.h \ + $(STAGING_DIR)/usr/include/term{,cap}.h \ + $(STAGING_DIR)/usr/include/unctrl.h \ + $(STAGING_DIR)/usr/lib/libcurses.so \ + $(STAGING_DIR)/usr/lib/lib{ncurses,panel}.{a,so*} \ compile: install-dev clean: uninstall-dev