From 21a0c50667f952720d2300d111a3d68eeecf209c Mon Sep 17 00:00:00 2001 From: James Turner Date: Thu, 20 Jul 2017 13:18:37 -0400 Subject: Correct a horrible typo in the last commit (blaming jet lag). --- scripts/ac_build_iraf_pkg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ac_build_iraf_pkg b/scripts/ac_build_iraf_pkg index bff8017..8440d16 100755 --- a/scripts/ac_build_iraf_pkg +++ b/scripts/ac_build_iraf_pkg @@ -98,7 +98,7 @@ if [ ! -e bin ]; then fi # Remove any old libs that might cause linking complications (& links to them): -find . \( -name ".a" -o -name "*.o" \) -exec rm -f {} \; +find . \( -name "*.a" -o -name "*.o" \) -exec rm -f {} \; # Enable compilation with debugging symbols (from the STScI IRAF "make_all"; # avoiding trailing space, which gcc fails on as a non-existent filename!): -- cgit