]> ruderich.org/simon Gitweb - blhc/blhc.git/commitdiff
Fix --arch, missing '=s' in GetOptions().
authorSimon Ruderich <simon@ruderich.org>
Sat, 24 Mar 2012 17:04:52 +0000 (18:04 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sat, 24 Mar 2012 17:04:52 +0000 (18:04 +0100)
Thanks to Bernhard R. Link for spotting this.

bin/blhc
t/tests.t

index 6c3853a7975c7c296afd6cf43845747f2a5f544e..71c97cef5bda0e31a5282160557c2e769898e520 100755 (executable)
--- a/bin/blhc
+++ b/bin/blhc
@@ -312,7 +312,7 @@ if (not Getopt::Long::GetOptions(
             'all'      => \$option_all,
             # Misc.
             'color'    => \$option_color,
-            'arch'     => \$option_arch,
+            'arch=s'   => \$option_arch,
             'buildd'   => \$option_buildd,
         )) {
     require Pod::Usage;
index 3b9c332292db849b0a7b9e88b0e7cd2e2305b22b..6b23f06d74f586275aebab9c268343d9b6bb44d6 100644 (file)
--- a/t/tests.t
+++ b/t/tests.t
@@ -19,7 +19,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 90;
+use Test::More tests => 92;
 
 
 sub is_blhc {
@@ -535,6 +535,13 @@ is_blhc 'arch-mipsel', '', 8,
 LDFLAGS missing (-Wl,-z,relro): gcc -Wl,-z,now -o test test.o
 ';
 
+is_blhc 'arch-ia64', '--arch i386', 8,
+        'CFLAGS missing (-fstack-protector --param=ssp-buffer-size=4): gcc -D_FORTIFY_SOURCE=2 -g -O2 -fPIE -Wformat -Wformat-security -Werror=format-security -Wall -c test.c
+LDFLAGS missing (-Wl,-z,relro): gcc -fPIE -pie -o test test.o
+CFLAGS missing (-fPIE -fstack-protector --param=ssp-buffer-size=4): gcc -D_FORTIFY_SOURCE=2 -g -O2 -Wformat -Wformat-security -Werror=format-security -Wall -c test.c
+LDFLAGS missing (-pie -Wl,-z,relro): gcc -fPIE -o test test.o
+';
+
 
 # debian