Opened 12 years ago
Closed 12 years ago
#1566 closed Bug (fixed)
dpkg-buildpackage fails if make has not been run
Reported by: | smmalis | Owned by: | charles |
---|---|---|---|
Priority: | Normal | Milestone: | 1.41 |
Component: | libtransmission | Version: | 1.40 |
Severity: | Normal | Keywords: | |
Cc: |
Description
When running dpkg-buildpackage without running make first, it fails because version.h does not exist yet. I think changing line 169 of libT's Makefile.am to something like
if test -d .svn; then if test -e version.h; then rm version.h; fi; fi;
would fix it.
Change History (3)
comment:1 Changed 12 years ago by smmalis
comment:2 Changed 12 years ago by charles
- Milestone changed from None Set to 1.41
- Status changed from new to assigned
- Version changed from 1.40+ to 1.40
comment:3 Changed 12 years ago by charles
- Resolution set to fixed
- Status changed from assigned to closed
Note: See
TracTickets for help on using
tickets.
I should clarify: the first thing dpkg-buildpackage does is call make clean. This calls libtransmission's make clean-local, which causes the error.