#969 closed defect (fixed)
"make distclean" removes data/chrome/brand.properties which can't be recreated
| Reported by: | sascha_silbe | Owned by: | erikos |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | hulahop | Version: | Git as of bugdate |
| Severity: | Minor | Keywords: | |
| Cc: | Distribution/OS: | Unspecified | |
| Bug Status: | Assigned |
Description
"make distclean" removes data/chrome/brand.properties, breaking further builds:
make[2]: Entering directory `/home/buildslave/sugar-jhbuild/source/hulahop/data/chrome'
make[2]: * No rule to make target brand.properties', needed by all-am'. Stop.
make[2]: Leaving directory `/home/buildslave/sugar-jhbuild/source/hulahop/data/chrome'
make[1]: * [all-recursive] Error 1
make[1]: Leaving directory `/home/buildslave/sugar-jhbuild/source/hulahop/data'
make: * [all-recursive] Error 1
* Error during phase build of hulahop: ########## Error running make * [1/1]
Change History (4)
comment:1 Changed 14 years ago by erikos
- Owner changed from marcopg to erikos
- Priority changed from Unspecified by Maintainer to Normal
- Status changed from new to assigned
comment:2 Changed 14 years ago by erikos
- Bug Status changed from New to Assigned
comment:3 Changed 14 years ago by erikos
- Resolution set to fixed
- Status changed from assigned to closed
Note: See
TracTickets for help on using
tickets.
diff --git a/data/chrome/Makefile.am b/data/chrome/Makefile.am index d319915..ddaca56 100644 --- a/data/chrome/Makefile.am +++ b/data/chrome/Makefile.am @@ -21,5 +21,5 @@ CLEANFILES = \ $(manifest_DATA) DISTCLEANFILES = \ - $(manifest_DATA) \ - $(branding_DATA) + $(manifest_DATA) +Does fix it.