diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-10-14 20:42:28 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-10-14 20:42:28 +0200 |
commit | d785694f5a978a8ed93a40e847b7f069e6add913 (patch) | |
tree | b46f255dbe4659f8a35ae702f6d22d48edddcec9 /package | |
parent | c4e6bc74de5ac03e74b797bbcd088977f166d484 (diff) |
torsmo: fix build when help2man is available on host
help2man doesn't work when cross compiling, as it wants to run
./program --help, so ensure torsmo doesn't try to use it.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/torsmo/torsmo.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/torsmo/torsmo.mk b/package/torsmo/torsmo.mk index 03477d175..a9cbc5d5e 100644 --- a/package/torsmo/torsmo.mk +++ b/package/torsmo/torsmo.mk @@ -10,6 +10,8 @@ TORSMO_AUTORECONF = NO TORSMO_INSTALL_STAGING = NO TORSMO_INSTALL_TARGET = YES +# help2man doesn't work when cross compiling +TORSMO_CONF_ENV = HELP2MAN='' TORSMO_CONF_OPT = --x-includes="-I$(STAGING_DIR)/usr/include/X11" --x-libraries="-I$(STAGING_DIR)/usr/lib" --with-x TORSMO_DEPENDENCIES = xserver_xorg-server |