diff options
| author | Ulf Samuelsson | 2007-10-18 07:56:05 +0200 |
|---|---|---|
| committer | Ulf Samuelsson | 2007-10-18 07:56:05 +0200 |
| commit | c500802eaf421c1a385b5e1ea0e26e0d2dd8e0c2 (patch) | |
| tree | 1d0b5fd73f32b55353fec2cf7fa2a23cc9f6c928 | |
| parent | Fix kexec build for ARM (diff) | |
| download | buildroot-c500802eaf421c1a385b5e1ea0e26e0d2dd8e0c2.tar.gz buildroot-c500802eaf421c1a385b5e1ea0e26e0d2dd8e0c2.tar.xz buildroot-c500802eaf421c1a385b5e1ea0e26e0d2dd8e0c2.zip | |
Remove hyphen from images if empty rootfs suffix
| -rw-r--r-- | package/Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/Makefile.in b/package/Makefile.in index 4939a00fc..2586d4456 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -65,9 +65,12 @@ TARGET_CXXFLAGS=$(TARGET_CFLAGS) TARGET_LDFLAGS=-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib endif ######################################################################### -ifeq ($(BR2_ROOTFS_SUFFIX),) +#ifeq ($(BR2_ROOTFS_SUFFIX),) +ROOTFS_SUFFIX:=$(strip $(subst ",, $(BR2_ROOTFS_SUFFIX))) +ifeq ($(ROOTFS_SUFFIX),) ROOTFS_SUFFIX:= else +XXXX=xxxx ROOTFS_SUFFIX:=-$(BR2_ROOTFS_SUFFIX) endif @@ -315,3 +318,5 @@ X11_PREFIX:=$(strip $(subst ",, $(BR2_X11_PREFIX))) include package/Makefile.autotools.in +package-status: + @echo IMAGE=$(IMAGE) |
