diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2013-01-05 04:45:12 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2013-01-05 04:54:46 +0100 |
commit | 336b60ea2372352d82af10c32445ae3cee472c63 (patch) | |
tree | 8fbd6b7f9cec10f8e349222553488875720dc995 | |
parent | 8c5e79181b14e3503676ca576f1203d9a7eb8ca3 (diff) | |
download | zsh-336b60ea2372352d82af10c32445ae3cee472c63.tar.gz zsh-336b60ea2372352d82af10c32445ae3cee472c63.zip |
CONFIGFLAGS and STATICFLAGS: Only one flag per line
-rwxr-xr-x | debian/rules | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/debian/rules b/debian/rules index 54b1b445c..dcbb5543b 100755 --- a/debian/rules +++ b/debian/rules @@ -16,24 +16,31 @@ ifeq (zsh-beta,$(package)) CFLAGS += -W endif -CONFIGFLAGS = --prefix=/usr --mandir=/usr/share/man --bindir=/bin LDFLAGS="-Wl,--as-needed -g $(H_LDFLAGS)" +CONFIGFLAGS = --prefix=/usr +CONFIGFLAGS += --mandir=/usr/share/man +CONFIGFLAGS += --bindir=/bin +CONFIGFLAGS += LDFLAGS="-Wl,--as-needed -g $(H_LDFLAGS)" ifeq (zsh-beta,$(package)) CONFIGFLAGS += --program-suffix=-beta endif -CONFIGFLAGS += --infodir=/usr/share/info --enable-maildir-support -CONFIGFLAGS += --enable-max-jobtable-size=256 --enable-etcdir=/etc/$(package) +CONFIGFLAGS += --infodir=/usr/share/info +CONFIGFLAGS += --enable-maildir-support +CONFIGFLAGS += --enable-max-jobtable-size=256 +CONFIGFLAGS += --enable-etcdir=/etc/$(package) CONFIGFLAGS += --enable-function-subdirs CONFIGFLAGS += --enable-site-fndir=/usr/local/share/$(package)/site-functions CONFIGFLAGS += --enable-fndir=/usr/share/$(package)/functions -CONFIGFLAGS += --with-tcsetpgrp --with-term-lib="ncursesw tinfo" +CONFIGFLAGS += --with-tcsetpgrp +CONFIGFLAGS += --with-term-lib="ncursesw tinfo" CONFIGFLAGS += --enable-cap --enable-pcre CONFIGFLAGS += --enable-readnullcmd=pager CONFIGFLAGS += --enable-custom-patchlevel=Debian CONFIGFLAGS += --enable-additional-fpath=/usr/share/zsh/vendor-functions,/usr/share/zsh/vendor-completions -STATICFLAGS = --disable-dynamic --enable-ldflags=-static +STATICFLAGS = --disable-dynamic +STATICFLAGS += --enable-ldflags=-static ifneq (zsh-beta,$(package)) STATICFLAGS += --disable-dynamic-nss endif |