#667: Changeset 1627 - CONFIG_CRYPTO errors in Makefile
-------------------------------------+--------------------------------------
      Reporter:  anonymous           |       Owner:  mentor  
          Type:  defect              |      Status:  assigned
      Priority:  minor               |   Milestone:          
     Component:  madwifi: makefiles  |     Version:          
    Resolution:                      |    Keywords:          
Patch_attached:  0                   |  
-------------------------------------+--------------------------------------
Changes (by mentor):

  * status:  new => assigned

Old description:

> There is an error in changeset 1627
> Makefile line 183 says:
> @if [ -z "$(CONFIG_CRYPTO_AES)" ] || [ -z "$(CONFIG_CRYPTO_AES_586)" ];
> then \
>
> And this should be:
>
> @if [ -z "$(CONFIG_CRYPTO_AES)" ] && [ -z "$(CONFIG_CRYPTO_AES_586)" ];
> then \
>
> Regards,
> Philip

New description:

 There is an error in changeset 1627
 Makefile line 183 says:
 {{{
 @if [ -z "$(CONFIG_CRYPTO_AES)" ] || [ -z "$(CONFIG_CRYPTO_AES_586)" ];
 then \
 }}}

 And this should be:

 {{{
 @if [ -z "$(CONFIG_CRYPTO_AES)" ] && [ -z "$(CONFIG_CRYPTO_AES_586)" ];
 then \
 }}}

 Regards,
 Philip

Comment:

 Oh. I see.

-- 
Ticket URL: <http://madwifi.org/ticket/667>
MadWifi <http://madwifi.org/>
Multiband Atheros Driver for Wireless Fidelity
_______________________________________________
Madwifi-tickets mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/madwifi-tickets

Reply via email to