Author: bdubbs Date: Fri Apr 26 21:56:11 2019 New Revision: 21519 Log: Fix bad code construct
Modified: trunk/scripts/blfs-chapter13.php Modified: trunk/scripts/blfs-chapter13.php ============================================================================== --- trunk/scripts/blfs-chapter13.php Fri Apr 26 16:20:12 2019 (r21518) +++ trunk/scripts/blfs-chapter13.php Fri Apr 26 21:56:11 2019 (r21519) @@ -404,7 +404,7 @@ global $previous; if ( isset( $current ) && $book_index != "$current" ) return 0; - if ( isset( $package == "jdk" ) ) return "manual"; + if ( $package == "jdk" ) return "manual"; // Fix up directory path foreach ( $url_fix as $u ) -- http://lists.linuxfromscratch.org/listinfo/blfs-book FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
