diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-12-08 08:15:27 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-12-08 08:15:27 +0000 |
commit | ac1d92c425414bad889c1a60d0d2aee25581b74f (patch) | |
tree | aaa3969c6c1d78dc7f9ff5ba2577551813ff7e4b /package/Makefile.in | |
parent | 6250131be126b91d7feb8ae4c02fd7ca3725cc9e (diff) |
package/: get rid of unneeded $(strip ..)
Diffstat (limited to 'package/Makefile.in')
-rw-r--r-- | package/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/Makefile.in b/package/Makefile.in index 19c7c56b0..fe1d6ad9f 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -368,16 +368,16 @@ endif # X Windowing system XSERVER:= -ifeq ($(strip $(BR2_PACKAGE_TINYX)),y) +ifeq ($(BR2_PACKAGE_TINYX),y) XSERVER+=tinyx endif -ifeq ($(strip $(BR2_PACKAGE_XORG)),y) +ifeq ($(BR2_PACKAGE_XORG),y) XSERVER+=xorg endif -ifeq ($(strip $(BR2_PACKAGE_XORG7)),y) +ifeq ($(BR2_PACKAGE_XORG7),y) XSERVER+=xserver_xorg-server endif -ifeq ($(strip $(BR2_PACKAGE_XGGI)),y) +ifeq ($(BR2_PACKAGE_XGGI),y) XSERVER+=xggi endif |