aspectj pointcut com parâmetros de anotação

Estou usando o aspectj para interceptar métodos anotados com@Profile(description="something")

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Profile {
    public String description() default "";
}

@Around("com.merc.aop.ctw.aspect.PointcutDefinitions.logAnnotatedMethods(profile)")
public Object profile(ProceedingJoinPoint pjp, Profile profile) throws Throwable {
    ....
}

@Pointcut("@annotation(com.merc.annotations.Profile)")
protected void logAnnotatedMethods(Profile profile) {
}

Mas recebo a seguinte mensagem de erro ao compilar usando o AJC

formal unbound in pointcut 

questionAnswers(2)

yourAnswerToTheQuestion