Subversion Repositories pike

Compare Revisions

Ignore whitespace Rev 70 → Rev 71

/trunk/debian/changelog
18,8 → 18,9
directly anyway.
* Point Vcs-Svn and Vcs-Browser at svn.debian.org.
* Add debian/README.source.
* Use $(filter) instead of $(findstring) to parse DEB_BUILD_OPTIONS.
 
-- Magnus Holmgren <holmgren@debian.org> Sun, 23 Aug 2009 18:41:43 +0200
-- Magnus Holmgren <holmgren@debian.org> Sun, 23 Aug 2009 19:01:27 +0200
 
pike7.8 (7.8.116-1) experimental; urgency=low
 
/trunk/debian/rules
33,13 → 33,13
 
CFARGSEXTRA = --with-cdebug
 
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
CFARGSEXTRA += --without-copt
else
CFARGSEXTRA += --with-copt
endif
 
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS)))
CFARGSEXTRA += --with-rtldebug
else
CFARGSEXTRA += --without-rtldebug
51,7 → 51,7
CFLAGS_EXTRA += -ffunction-sections
endif
 
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
INSTALL_PROGRAM += -s
endif