diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-09-14 19:19:10 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-09-14 19:19:10 +0000 |
commit | 7b2a5028577504caa180356c67af841de32c00b8 (patch) | |
tree | 5f5031784dbd9c6aa85209d8bbccb93aa77c6d24 | |
parent | 79d7e95d5a48891726b142f8b25eec91ac517e6d (diff) | |
download | buildroot-novena-7b2a5028577504caa180356c67af841de32c00b8.tar.gz buildroot-novena-7b2a5028577504caa180356c67af841de32c00b8.zip |
Makefile.autotools.in: fix DESTDIR= help text
DESTDIR per default points to TARGET_DIR / STAGING_DIR without /usr
appended.
-rw-r--r-- | package/Makefile.autotools.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index 3bafeaf1e..29b482b66 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -43,16 +43,16 @@ # install the package to the staging directory # FOO_INSTALL_TARGET [YES/NO, default YES] # install the package to the target directory -# FOO_INSTALL_STAGING_OPT [default DESTDIR=$(STAGING_DIR)/usr install] +# FOO_INSTALL_STAGING_OPT [default DESTDIR=$(STAGING_DIR) install] # arguments passed to <make> while installing to the staging directory -# FOO_INSTALL_TARGET_OPT [default DESTDIR=$(TARGET_DIR)/usr install-exec] +# FOO_INSTALL_TARGET_OPT [default DESTDIR=$(TARGET_DIR) install-exec] # arguments passed to <make> while installing to the target directory # FOO_CLEAN_OPT [default clean] # arguments passed to <make> while installing to the staging directory -# FOO_UNINSTALL_STAGING_OPT [default DESTDIR=$(STAGING_DIR)/usr uninstall] +# FOO_UNINSTALL_STAGING_OPT [default DESTDIR=$(STAGING_DIR) uninstall] # arguments passed to <make> while uninstalling from the staging # directory -# FOO_UNINSTALL_TARGET_OPT [default DESTDIR=$(TARGET_DIR)/usr uninstall] +# FOO_UNINSTALL_TARGET_OPT [default DESTDIR=$(TARGET_DIR) uninstall] # arguments passed to <make> while uninstalling from the target # directory # FOO_SUBDIR [default empty] |