diff options
author | Sam James <sam@gentoo.org> | 2024-08-18 07:02:42 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-08-22 04:15:16 +0100 |
commit | 1ebf4606c242c2338de520876e6b342d44106150 (patch) | |
tree | 6c4215419a926ee50a5e28282556fb3507a1af1a /gprofng | |
parent | 622be1889a990611ffc24b951cd1378dbb17c322 (diff) | |
download | gdb-1ebf4606c242c2338de520876e6b342d44106150.zip gdb-1ebf4606c242c2338de520876e6b342d44106150.tar.gz gdb-1ebf4606c242c2338de520876e6b342d44106150.tar.bz2 |
gprofng: testsuite: fix 'wrapper' typo
gprofng/ChangeLog
* testsuite/config/default.exp: Fix 'wrapper' typo.
Diffstat (limited to 'gprofng')
-rw-r--r-- | gprofng/testsuite/config/default.exp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gprofng/testsuite/config/default.exp b/gprofng/testsuite/config/default.exp index 74d1dad..3681c80 100644 --- a/gprofng/testsuite/config/default.exp +++ b/gprofng/testsuite/config/default.exp @@ -53,7 +53,7 @@ if { "$CHECK_TARGET" == "check-install" } { append ld_library_path ":${BUILDDIR}/../libiberty" } - set f [open "gprofng_wraper" w+] + set f [open "gprofng_wrapper" w+] puts $f "#!$BASH" puts $f "LD_LIBRARY_PATH=$ld_library_path:$orig_ld_library_path" puts $f "GPROFNG_SYSCONFDIR=$env(srcroot)/src" @@ -61,8 +61,8 @@ if { "$CHECK_TARGET" == "check-install" } { puts $f "export LD_LIBRARY_PATH GPROFNG_SYSCONFDIR GPROFNG_PRELOAD_LIBDIRS" puts $f "${BUILDDIR}/src/gprofng \"\$@\"" close $f - file attributes gprofng_wraper -permissions +rx - set ::env(GPROFNG) "$BUILDDIR/gprofng_wraper" + file attributes gprofng_wrapper -permissions +rx + set ::env(GPROFNG) "$BUILDDIR/gprofng_wrapper" } puts "### GPROFNG: $env(GPROFNG)" |