diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-03-24 19:45:35 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-03-24 19:45:35 +0000 |
commit | fc1950f32620a20eb92878934bbc269dbdd8b84c (patch) | |
tree | 0df5ca34b1476d130789638d8e2a0b40cd83480f /docs/buildroot-documentation.html | |
parent | e74ec658322ddc308b89bb0b4dd38563ba4f0685 (diff) | |
download | upstream-fc1950f32620a20eb92878934bbc269dbdd8b84c.tar.gz upstream-fc1950f32620a20eb92878934bbc269dbdd8b84c.tar.bz2 upstream-fc1950f32620a20eb92878934bbc269dbdd8b84c.zip |
fix target name in buildroot documentation example
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@446 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'docs/buildroot-documentation.html')
-rw-r--r-- | docs/buildroot-documentation.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/buildroot-documentation.html b/docs/buildroot-documentation.html index 9856c32a20..f9b494e569 100644 --- a/docs/buildroot-documentation.html +++ b/docs/buildroot-documentation.html @@ -460,10 +460,10 @@ foo-compile: bar-compile 31 ); 32 touch $(PKG_DIR)/.configured; 33 - 34 $(PKG_DIR)/foo $(PKG_DIR)/.configured + 34 $(PKG_DIR)/$(PKG_NAME) $(PKG_DIR)/.configured 35 $(MAKE) CC=$(TARGET_CC) -C $(PKG_DIR) 36 - 37 $(PKG_IPK): $(PKG_DIR)/$(PKG_BINARY) + 37 $(PKG_IPK): $(PKG_DIR)/$(PKG_NAME) 38 $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) 39 $(MAKE) prefix=$(PKG_IPK_DIR)/usr -C $(PKG_DIR) install 40 rm -Rf $(PKG_IPK_DIR)/usr/man |