diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-08-27 14:38:05 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-08-27 14:38:05 +0200 |
commit | e5413e83d8d18fa67d1fc1e586d08d70c379b7d9 (patch) | |
tree | 9f994990248accd833982c644f06a834ff36dd34 | |
parent | 4595a2fc9f72c688a5405292ca69e57afc5a111b (diff) | |
download | buildroot-novena-e5413e83d8d18fa67d1fc1e586d08d70c379b7d9.tar.gz buildroot-novena-e5413e83d8d18fa67d1fc1e586d08d70c379b7d9.zip |
project: saveconfig/getconfig doesn't need conf
And get rid of unused debugging code while we're at it.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | project/project.mk | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/project/project.mk b/project/project.mk index 26c2ffced..3074eff48 100644 --- a/project/project.mk +++ b/project/project.mk @@ -19,7 +19,7 @@ $(TARGET_DIR)/etc/br-version: .config mkdir -p $(TARGET_DIR)/etc echo $(BR2_VERSION)$(shell $(TOPDIR)/scripts/setlocalversion) >$@ -saveconfig: $(CONFIG)/conf +saveconfig: mkdir -p $(LOCAL)/$(PROJECT) -cp .config $(PROJECT_FILE) if [ -f $(LINUX26_DIR)/.config ]; then \ @@ -48,14 +48,5 @@ saveconfig: $(CONFIG)/conf $(LOCAL)/$(PROJECT)/u-boot/$(PROJECT).h; \ fi -getconfig: $(CONFIG)/conf +getconfig: -cp $(LOCAL)/$(PROJECT)/$(PROJECT).config .config - -vendor-dbg: - @echo VENDOR_SITE=$(BR2_VENDOR_SITE) - @echo VENDOR_SUFFIX=$(BR2_VENDOR_SUFFIX) - @echo VENDOR_BINUTILS_RELEASE=$(BR2_VENDOR_BINUTILS_RELEASE) - @echo VENDOR_GCC_RELEASE=$(BR2_VENDOR_GCC_RELEASE) - @echo VENDOR_UCLIBC_RELEASE=$(BR2_VENDOR_UCLIBC_RELEASE) - @echo VENDOR_GDB_RELEASE=$(BR2_VENDOR_GDB_RELEASE) - @echo VENDOR_PATCH_DIR=$(BR2_VENDOR_PATCH_DIR) |