diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-08-16 11:59:56 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-08-16 11:59:56 +0000 |
commit | 533f5e01a7bf90eb1b1514f9874eb0045ff6cddf (patch) | |
tree | 40c68c7e76365a9a2984c1893c1681e4b7117c23 /package | |
parent | 0fa75a11eed751acacd7cb8557a815116a1b73c5 (diff) | |
download | buildroot-novena-533f5e01a7bf90eb1b1514f9874eb0045ff6cddf.tar.gz buildroot-novena-533f5e01a7bf90eb1b1514f9874eb0045ff6cddf.zip |
Makefile.autotools.in: add missing continuation for PKG_CONF_OPT
The silent support added in r23041 was missing a shell continuation character
breaking PKG_CONF_OPT support - Fixed.
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile.autotools.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index 266fd5ec2..9d8d6794d 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -213,7 +213,7 @@ $(BUILD_DIR)/%/.stamp_configured: --prefix=/usr \ --exec-prefix=/usr \ --sysconfdir=/etc \ - $(if $(findstring s,$(MAKEFLAGS)),--quiet,) + $(if $(findstring s,$(MAKEFLAGS)),--quiet,) \ $($(PKG)_CONF_OPT) $(Q)touch $@ |