- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: <command line>:8:2: missing '(' after predicat...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2007 11:57 PM
02-22-2007 11:57 PM
<command line>:8:2: missing '(' after predicate
I am trying to compile my application related makefile in HP-UX11.11. During the course i am getting the below stared error.
gcc -I. -I../../include -I../../include/regex -I../../include/.././os/unix -O2 -I/home/jupupg/jupiter/dev/mysql/include -DHPUX11 -DTARGET=\"httpsd\" -DNO_DL_NEEDED -DAPACHE_SSL -I`/opt/gpsy/perl588/bin/perl -MConfig -e 'print $Config{archlibexp}'`/CORE `/opt/gpsy/perl588/bin/perl -I/home/jupupg/jupiter/dev/data/apache/lib/perl '-MApache::ExtUtils=%Config' -e 'print $Config{ccflags}'` -DMOD_PERL_VERSION=\"1.28\" -D_XOPEN_SOURCE_EXTENDED -D_HPUX_SOURCE -D_INCLUDE_HPUX_SOURCE -D_INCLUDE_XOPEN_SOURCE_EXTENDED -I./os/unix -I../../include -I/home/jupupg/jupiter/dev/lib/openssl/include -I/home/jupupg/jupiter/dev/openssl/include -I/home/jupupg/jupiter/dev/src/web/GENS -I/home/jupupg/jupiter/dev/src/web/DirWrapper -I/home/jupupg/jupiter/dev/src/web/ntaucl/ -I/usr/local/include -I/home/jupupg/jupiter/dev/mysql/include -DHPUX -D_XOPEN_SOURCE_EXTENDED -D_HPUX_SOURCE -D_INCLUDE_HPUX_SOURCE -D_INCLUDE_XOPEN_SOURCE_EXTENDED -D_POSIX_D10_THREADS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -c mod_perl_opmask.c
*** Error exit code 1
Please do the needful.
Regards
Sasikala
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2007 12:29 AM
02-23-2007 12:29 AM
Re: <command line>:8:2: missing '(' after predicate
please read:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=998620
1. Please re-check your code.
2. Try the suggestions from the earlier thread.
3. Report back/Award Points
Please also read:
http://forums1.itrc.hp.com/service/forums/helptips.do?#33 on how to reward any useful answers given to your questions.
So far you have never awarded points !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2007 01:06 AM
02-23-2007 01:06 AM
Re: <command line>:8:2: missing '(' after predicate
without seeing the line in the Makefile, I can only guess: Verify, that your strings
'print $Config{'
are written as
'print $$Config{'
in your Makefile - a single '$' references a make-variable.
Else send the relevant lines of your Makefile for further inspection.
mfG Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2007 04:06 PM
02-26-2007 04:06 PM
Re: <command line>:8:2: missing '(' after predicate
I have check as you suggested. In Makefile the line contains double $ . It is only the print message.
Please find the attached Makefile.
Kindly do the neefule.
Regards
Sasikala
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2007 08:52 PM
02-27-2007 08:52 PM
Re: <command line>:8:2: missing '(' after predicate
the Makefile you attached is not the one which generated the error messages, but seems to be the TOP-Makefile of a tree build.
You'll have to find the Makefile containing the compilation rule of 'mod_perl_opmask.c' and send that one.
mfG Peter