Displaying 4 results from an estimated 4 matches for "issue7".
Did you mean:
issue
2014 Dec 28
0
building NUT on Mac OS X Yosemite (website/documentation)
...echo doesn't support/need the 'e' option - I didn't
think of this when I first wrote the makefile.. shame on me!
So, I think this can be solved replacing all the occurrences (3) of
'echo -e' with 'printf' in Makefile.am, see:
https://github.com/zykh/nut-website/tree/issue7
Does it solve the problem? Are there other hiccups?
2014 Dec 29
2
building NUT on Mac OS X Yosemite (website/documentation)
On Dec 28, 2014, at 4:38 PM, hyouko at gmail.com wrote:
> So, I think this can be solved replacing all the occurrences (3) of
> 'echo -e' with 'printf' in Makefile.am, see:
> https://github.com/zykh/nut-website/tree/issue7
> Does it solve the problem? Are there other hiccups?
As expected, printf works for me on OS X 10.9 (Mavericks) as well.
The only thing we need to watch out for is when the parameters to printf have '%' embedded in them. Probably not a problem for the DDL, since '%' has special...
2014 Dec 08
3
building NUT on Mac OS X Yosemite (website/documentation)
hello,
below the result of ./configure + full make output (do you need more?)
I've installed python modules, but it didn't help
Configuration summary:
======================
build serial drivers: yes
build USB drivers: yes
build SNMP drivers: yes
build neon based XML driver: yes
enable Avahi support: no
build Powerman PDU client driver: no
build IPMI driver: no
build Mac OS X
2014 Dec 31
0
building NUT on Mac OS X Yosemite (website/documentation)
...not a problem for the DDL, since '%' has special meaning in URLs, but using 'printf %s' should avoid problems down the road.
mmh.. if we want to add support for '%'s we could do something like
this (not sure if it's worth doing):
https://github.com/zykh/nut-website/tree/issue7
Can you test it on OS X preferably dropping in the ddl dir also some
'%' files and updating driver.list.in accordingly?
Something like the following ones should be enough:
https://drive.google.com/file/d/0BxWv_9cok7BKVDcxdWlPX2tTM00/view?usp=sharing
Second thought on the sort-thing: at the...