Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alex D
GHC
Commits
e1753f9b
Commit
e1753f9b
authored
Jul 19, 2001
by
sof
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[project @ 2001-07-19 20:27:23 by sof]
FPTOOLS_END_{TEXT,DATA}_SECTION: fix 'test -n' usage
parent
f0f7d71b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
aclocal.m4
aclocal.m4
+5
-5
No files found.
aclocal.m4
View file @
e1753f9b
dnl $Id: aclocal.m4,v 1.
79 2001/07/19 09:03:24 simonmar
Exp $
dnl $Id: aclocal.m4,v 1.
80 2001/07/19 20:27:23 sof
Exp $
dnl
dnl Extra autoconf macros for the Glasgow fptools
dnl
...
...
@@ -675,7 +675,7 @@ AC_DEFUN([FPTOOLS_END_TEXT_SECTION],
fptools_cv_end_of_text="etext asm("etext")"
fi
fi])
if test -n
$fptools_cv_end_of_text
; then
if test -n
"$fptools_cv_end_of_text"
; then
AC_DEFINE_UNQUOTED([TEXT_SECTION_END_MARKER], $fptools_cv_end_of_text)
else
AC_DEFINE_UNQUOTED([TEXT_SECTION_END_MARKER], dunno_end_of_text)
...
...
@@ -698,7 +698,7 @@ AC_DEFUN([FPTOOLS_END_TEXT_SECTION],
fptools_cv_end_of_text_decl=etext
fi
fi])
if test -n
$fptools_cv_end_of_text_decl
; then
if test -n
"$fptools_cv_end_of_text_decl"
; then
AC_DEFINE_UNQUOTED([TEXT_SECTION_END_MARKER_DECL], $fptools_cv_end_of_text_decl)
else
AC_DEFINE_UNQUOTED([TEXT_SECTION_END_MARKER_DECL], dunno_end_of_text_decl)
...
...
@@ -726,7 +726,7 @@ AC_DEFUN([FPTOOLS_END_DATA_SECTION],
fptools_cv_end_of_data=end
fi
fi])
if test -n
$fptools_cv_end_of_data
; then
if test -n
"$fptools_cv_end_of_data"
; then
AC_DEFINE_UNQUOTED([DATA_SECTION_END_MARKER], $fptools_cv_end_of_data)
else
AC_DEFINE_UNQUOTED([DATA_SECTION_END_MARKER], dunno_end_of_data)
...
...
@@ -749,7 +749,7 @@ AC_DEFUN([FPTOOLS_END_DATA_SECTION],
fptools_cv_end_of_data_decl=end
fi
fi])
if test -n
$fptools_cv_end_of_data_decl
; then
if test -n
"$fptools_cv_end_of_data_decl"
; then
AC_DEFINE_UNQUOTED([DATA_SECTION_END_MARKER_DECL], $fptools_cv_end_of_data_decl)
else
AC_DEFINE_UNQUOTED([DATA_SECTION_END_MARKER_DECL], dunno_end_of_data_decl)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment